Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
17
third-party/vendor/ash/tests/display.rs
vendored
Normal file
17
third-party/vendor/ash/tests/display.rs
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
use ash::vk;
|
||||
|
||||
#[test]
|
||||
fn debug_flags() {
|
||||
assert_eq!(
|
||||
format!(
|
||||
"{:?}",
|
||||
vk::AccessFlags::INDIRECT_COMMAND_READ | vk::AccessFlags::VERTEX_ATTRIBUTE_READ
|
||||
),
|
||||
"INDIRECT_COMMAND_READ | VERTEX_ATTRIBUTE_READ"
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn debug_enum() {
|
||||
assert_eq!(format!("{:?}", vk::ChromaLocation::MIDPOINT), "MIDPOINT");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue