mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
24 lines
419 B
GLSL
24 lines
419 B
GLSL
SamplerState g_sSamp : register(s0);
|
|
|
|
Texture2DMS <float4> g_tTex2dmsf4;
|
|
Texture2DMSArray <float4> g_tTex2dmsf4a;
|
|
|
|
struct PS_OUTPUT
|
|
{
|
|
float4 Color : SV_Target0;
|
|
float Depth : SV_Depth;
|
|
};
|
|
|
|
PS_OUTPUT main()
|
|
{
|
|
PS_OUTPUT psout;
|
|
|
|
float2 r00 = g_tTex2dmsf4.GetSamplePosition(1);
|
|
float2 r01 = g_tTex2dmsf4a.GetSamplePosition(2);
|
|
|
|
psout.Color = 1.0;
|
|
psout.Depth = 1.0;
|
|
|
|
return psout;
|
|
}
|