aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <[email protected]>2018-08-28 04:41:42 -0300
committerReinUsesLisp <[email protected]>2018-08-28 04:41:42 -0300
commit42c456f24f7dd7ed4775d939f506a174fa75e8bb (patch)
tree67677f067ac3aefe79c6fbebc265d1741764758a /tests/main.cpp
parent014c6ab5869ce30bb3b0d116b9c204d972fbd57a (diff)
downloadsirit-42c456f24f7dd7ed4775d939f506a174fa75e8bb.tar.gz
sirit-42c456f24f7dd7ed4775d939f506a174fa75e8bb.zip
Add OpConstantSampler
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index 2f60422..2df624e 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -20,7 +20,6 @@ public:
// Type testing
TypeBool();
TypeBool();
- TypeInt(64, true);
TypeInt(64, false);
TypeInt(16, false);
TypeFloat(16);
@@ -32,11 +31,11 @@ public:
TypeImage(TypeFloat(32), spv::Dim::Dim2D, 0, false, false, 0,
spv::ImageFormat::Rg32f);
TypeSampledImage(TypeImage(TypeFloat(32), spv::Dim::Rect, 0, false, false, 0,
- spv::ImageFormat::Rg32f));
- TypeVector(TypeInt(32, true), 4);
- TypeVector(TypeInt(64, true), 4);
- TypeRuntimeArray(TypeInt(32, true));
- TypeStruct({TypeInt(32, true), TypeFloat(64)});
+ spv::ImageFormat::Rg32f));
+ TypeVector(TypeInt(32, false), 4);
+ TypeVector(TypeInt(64, false), 4);
+ TypeRuntimeArray(TypeInt(32, false));
+ TypeStruct({TypeInt(32, false), TypeFloat(64)});
TypePointer(spv::StorageClass::Private, TypeFloat(16));
ConstantTrue(TypeBool());
ConstantTrue(TypeBool());