diff options
author | 2013-03-27 10:53:14 -0700 | |
---|---|---|
committer | 2013-03-27 10:53:14 -0700 | |
commit | b43722c3dd69a90f0d0665912bd543aa12521c58 (patch) | |
tree | 57f9554a55ee8a8d40c5f6f9053f9f14d8c55936 /opengl/libagl/fp.cpp | |
parent | cd91024ca16db96daa697e22f7a088b416a424e3 (diff) |
[MIPS] Add MIPS architecture support to libagl
Change-Id: I30eb92857a2a6ea867fe0ee45109f17609043aae
Diffstat (limited to 'opengl/libagl/fp.cpp')
-rw-r--r-- | opengl/libagl/fp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libagl/fp.cpp b/opengl/libagl/fp.cpp index ae5f1fe213..aea44493e3 100644 --- a/opengl/libagl/fp.cpp +++ b/opengl/libagl/fp.cpp @@ -19,7 +19,7 @@ // ---------------------------------------------------------------------------- -#if !defined(__arm__) +#if !defined(__arm__) && !defined(__mips__) GGLfixed gglFloatToFixed(float v) { return GGLfixed(floorf(v * 65536.0f + 0.5f)); } |