bgfx/3rdparty/glslang/Test/hlsl.structbuffer.append.frag
Branimir Karadžić 4ee3b81c61 Updated glslang.
2017-04-22 00:26:44 -07:00

12 lines
238 B
GLSL

AppendStructuredBuffer<float4> sbuf_a;
ConsumeStructuredBuffer<float4> sbuf_c;
AppendStructuredBuffer<float4> sbuf_unused;
float4 main(uint pos : FOO) : SV_Target0
{
sbuf_a.Append(float4(1,2,3,4));
return sbuf_c.Consume();
}