Commit 6b1228051025d1b05334f009cdd65a1828dbf7ac

Ivan Epifanov 2021-06-21T23:14:56

Vita: proper syntax

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/src/render/vitagxm/shader_src/texture_v.cg b/src/render/vitagxm/shader_src/texture_v.cg
index 42e7df9..8be0f54 100644
--- a/src/render/vitagxm/shader_src/texture_v.cg
+++ b/src/render/vitagxm/shader_src/texture_v.cg
@@ -2,8 +2,8 @@ void main(
     float3 aPosition,
     float2 aTexcoord,
     uniform float4x4 wvp,
-    float4 out vPosition : POSITION,
-    float2 out vTexcoord : TEXCOORD0
+    out float4 vPosition : POSITION,
+    out float2 vTexcoord : TEXCOORD0
 )
 {
     vPosition = mul(float4(aPosition, 1.f), wvp);