mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
eb71cdd5bb
Fix #772.
14 lines
330 B
GLSL
14 lines
330 B
GLSL
#define DEFINE_TEXTURE(name) Texture2D name; SamplerState name##_ss;
|
|
#define SAMPLE_TEXTURE(name, uv) name.Sample(name##_ss, (uv).xy)
|
|
|
|
#define test_texture2 test_texture
|
|
|
|
DEFINE_TEXTURE(test_texture)
|
|
|
|
float4 main(float4 input : TEXCOORD0) : SV_TARGET
|
|
{
|
|
float4 tex = SAMPLE_TEXTURE(test_texture2, input.xy);
|
|
return tex;
|
|
}
|
|
|