Output 8 and 16 bit capabilities OpSpecConstantOp

OpSpecConstants with 8 or 16 width types require the corresponding
capabilities.

Fixes #3449.
This commit is contained in:
Nathaniel Cesario 2023-12-14 15:34:46 -07:00 committed by arcady-lunarg
parent db933d7743
commit 5ad3d41364
8 changed files with 207 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#version 450
#extension GL_EXT_shader_explicit_arithmetic_types_int8 : require
// Produce an OpSpecConstantOp with 8 bit integer type
layout(constant_id = 0) const int c = 8;
layout(binding=0) writeonly restrict buffer S {
uint8_t p_out[];
};
void main()
{
p_out[0] = uint8_t(c);
}