mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 12:00:05 +00:00
17 lines
299 B
Plaintext
17 lines
299 B
Plaintext
|
#version 450
|
||
|
#extension GL_EXT_shader_explicit_arithmetic_types_int16 : require
|
||
|
|
||
|
// Produce an OpSpecConstantOp with 16 bit integer type
|
||
|
|
||
|
layout(constant_id = 0) const int c = 8;
|
||
|
|
||
|
layout(binding=0) writeonly restrict buffer S {
|
||
|
uint16_t p_out[];
|
||
|
};
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
p_out[0] = uint16_t(c);
|
||
|
}
|
||
|
|