First Commit
This commit is contained in:
8
externals/glslang/Test/hlsl.clipdistance-1.vert
vendored
Normal file
8
externals/glslang/Test/hlsl.clipdistance-1.vert
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
void main(out float4 pos : SV_Position,
|
||||
out float clip : SV_ClipDistance, // scalar float
|
||||
out float cull : SV_CullDistance) // scalar float
|
||||
{
|
||||
pos = 1.0f.xxxx;
|
||||
clip = 0.5f;
|
||||
cull = 0.51f;
|
||||
}
|
||||
Reference in New Issue
Block a user