mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
5ad3d41364
OpSpecConstants with 8 or 16 width types require the corresponding capabilities. Fixes #3449.
18 lines
296 B
Plaintext
18 lines
296 B
Plaintext
#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);
|
|
}
|
|
|
|
|