bgfx/3rdparty/glslang/Test/hlsl.texturebuffer.frag
Branimir Karadžić 0eb67a9c85 Updated glslang.
2017-11-19 13:01:01 -08:00

18 lines
245 B
GLSL

struct Data {
float4 f;
int4 i;
};
TextureBuffer<Data> TextureBuffer_var : register(t0);
tbuffer tbuf2 {
float4 f2;
int4 i2;
};
float4 main(float4 pos : SV_POSITION) : SV_TARGET
{
return TextureBuffer_var.f + f2;
}