diff options
author | Wolfgang Draxinger <Wolfgang.Draxinger@draxit.de> | 2013-11-11 03:03:26 +0100 |
---|---|---|
committer | Wolfgang Draxinger <Wolfgang.Draxinger@draxit.de> | 2013-11-11 03:03:26 +0100 |
commit | f7418faa1bffa56a5754f98dcc628fcfbf8606c5 (patch) | |
tree | 41b5fc6f92b08ef75bc08adebe16c402fd6f9a85 | |
parent | 7615ac2f626c271ced9dace68e9008d0974485ca (diff) | |
parent | c4f328b451f8043a508b08c732ad1879a741d6f4 (diff) | |
download | linmath-f7418faa1bffa56a5754f98dcc628fcfbf8606c5.tar.gz linmath-f7418faa1bffa56a5754f98dcc628fcfbf8606c5.tar.xz linmath-f7418faa1bffa56a5754f98dcc628fcfbf8606c5.zip |
Merge branch 'learnopengles/dev' into dev
-rw-r--r-- | linmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -189,7 +189,7 @@ static inline void mat4x4_translate(mat4x4 T, float x, float y, float z) } static inline void mat4x4_translate_in_place(mat4x4 M, float x, float y, float z) { - vec4 t = {x, y, z, 1}; + vec4 t = {x, y, z, 0}; vec4 r; int i; for (i = 0; i < 4; ++i) { |