Signed-off-by: Alejandro Saucedo <axsauze@gmail.com>
This commit is contained in:
Alejandro Saucedo 2021-09-12 11:33:57 +01:00
parent 76fc7cd1c4
commit a30b6c53dd

View file

@ -197,7 +197,11 @@ TEST(TestPushConstants, TestConstantsMixedTypes)
pa[2] += pcs.z;
})");
struct TestConsts{float x; uint32_t y; int32_t z;};
struct TestConsts{
float x;
uint32_t y;
int32_t z;
};
std::vector<uint32_t> spirv = compileSource(shader);