mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
e5530b92ce
Almost equivalent to tbuffer, except members not at global scope. So, reference is "TextureBuffer_var.member", not simply "member".
18 lines
245 B
GLSL
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;
|
|
}
|