Procházet zdrojové kódy

Vita: proper syntax

Ivan Epifanov před 4 roky
rodič
revize
6b12280510
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      src/render/vitagxm/shader_src/texture_v.cg

+ 2 - 2
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);