First Commit
This commit is contained in:
6
externals/glslang/Test/hlsl.clipdistance-3.frag
vendored
Normal file
6
externals/glslang/Test/hlsl.clipdistance-3.frag
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
float4 main(in float4 pos : SV_Position,
|
||||
in float clip[2] : SV_ClipDistance, // array of scalar float
|
||||
in float cull[2] : SV_CullDistance) : SV_Target0 // array of scalar float
|
||||
{
|
||||
return pos + clip[0] + cull[0];
|
||||
}
|
||||
Reference in New Issue
Block a user