Skip to content

Commit

Permalink
Try transpose
Browse files Browse the repository at this point in the history
  • Loading branch information
frangarcj committed Nov 23, 2016
1 parent 6e99e2e commit 2a3349e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ before_install:
- tar xjf *.tar.bz2
- export VITASDK=$PWD/vitasdk
- export PATH=$VITASDK/bin:$PATH
- wget https://releases.linaro.org/15.02/components/toolchain/binaries/arm-linux-gnueabihf/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf.tar.xz
- wget https://releases.linaro.org/archive/15.02/components/toolchain/binaries/arm-linux-gnueabihf/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf.tar.xz
- tar xf gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf.tar.xz
- export PATH=$(pwd)/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/bin:$PATH
- rm gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf.tar.xz
Expand Down
2 changes: 1 addition & 1 deletion shaders/opaque_v.cg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ void main(
float4 out vPosition : POSITION,
float2 out vTexcoord : TEXCOORD0)
{
vPosition = mul(aPosition, wvp);
vPosition = mul(aPosition, transpose(wvp));
vTexcoord = aTexcoord;
}

0 comments on commit 2a3349e

Please sign in to comment.