Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git] / Test / spv.specConstantOp.int16.comp
blobc5078436c72604136a4ffa864fba13716dcd2807
1 #version 450
2 #extension GL_EXT_shader_explicit_arithmetic_types_int16 : require
4 // Produce an OpSpecConstantOp with 16 bit integer type
6 layout(constant_id = 0) const int c = 8;
8 layout(binding=0) writeonly restrict buffer S {
9     uint16_t p_out[];
12 void main()
14     p_out[0] = uint16_t(c);