glslang/Test/spv.specConstantOp.float16.comp
Nathaniel Cesario 5ad3d41364 Output 8 and 16 bit capabilities OpSpecConstantOp
OpSpecConstants with 8 or 16 width types require the corresponding
capabilities.

Fixes #3449.
2023-12-15 18:36:00 -05:00

19 lines
306 B
Plaintext

#version 450
#extension GL_EXT_shader_explicit_arithmetic_types_float16 : require
// Produce an OpSpecConstantOp with 8 bit integer type
layout(constant_id = 0) const float c = 8;
layout(binding=0) writeonly restrict buffer S {
float16_t p_out[];
};
void main()
{
p_out[0] = float16_t(c);
}