File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const INDEXING_FEATURES: wgt::Features = wgt::Features::TEXTURE_BINDING_ARRAY
18
18
. union ( wgt:: Features :: UNIFORM_BUFFER_BINDING_ARRAYS )
19
19
. union ( wgt:: Features :: PARTIALLY_BOUND_BINDING_ARRAY ) ;
20
20
21
+ #[ expect( rustdoc:: private_intra_doc_links) ]
21
22
/// Features supported by a [`vk::PhysicalDevice`] and its extensions.
22
23
///
23
24
/// This is used in two phases:
Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ use parking_lot::{Mutex, RwLock};
44
44
use naga:: FastHashMap ;
45
45
use wgt:: InternalCounter ;
46
46
47
+ pub use adapter:: PhysicalDeviceFeatures ;
48
+
47
49
const MILLIS_TO_NANOS : u64 = 1_000_000 ;
48
50
const MAX_TOTAL_ATTACHMENTS : usize = crate :: MAX_COLOR_ATTACHMENTS * 2 + 1 ;
49
51
@@ -455,7 +457,7 @@ pub struct Adapter {
455
457
//queue_families: Vec<vk::QueueFamilyProperties>,
456
458
known_memory_flags : vk:: MemoryPropertyFlags ,
457
459
phd_capabilities : adapter:: PhysicalDeviceProperties ,
458
- phd_features : adapter :: PhysicalDeviceFeatures ,
460
+ phd_features : PhysicalDeviceFeatures ,
459
461
downlevel_flags : wgt:: DownlevelFlags ,
460
462
private_caps : PrivateCapabilities ,
461
463
workarounds : Workarounds ,
You can’t perform that action at this time.
0 commit comments