First Commit
This commit is contained in:
18
externals/glslang/Test/hlsl.y-negate-3.vert
vendored
Normal file
18
externals/glslang/Test/hlsl.y-negate-3.vert
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
// Test Y negation from entry point out parameter
|
||||
|
||||
float4 position;
|
||||
|
||||
struct VS_OUT {
|
||||
float4 pos : SV_Position;
|
||||
int somethingelse;
|
||||
};
|
||||
|
||||
VS_OUT main()
|
||||
{
|
||||
VS_OUT vsout;
|
||||
|
||||
vsout.pos = position;
|
||||
vsout.somethingelse = 42;
|
||||
|
||||
return vsout;
|
||||
}
|
||||
Reference in New Issue
Block a user