diff options
| author | 2011-12-09 14:06:07 -0800 | |
|---|---|---|
| committer | 2011-12-09 14:06:07 -0800 | |
| commit | 2b93f0bf448160b002dec10c5bb1c9985a5950e6 (patch) | |
| tree | 00f73cd0b0757b625e950aba5996f365f8c03287 /opengl | |
| parent | c4d605f44bc7a1a4eaa96f12939b312cdcd7f990 (diff) | |
Fix convert8To4, convert8To5
See b/5680952 "Compilation warnings in etc1.cpp" for discussion.
Fixes b/5680952
Change-Id: I0af6ba5ed5e60f3ed7a6a28eba3b09504fee1a3f
Diffstat (limited to 'opengl')
| -rw-r--r-- | opengl/libs/ETC1/etc1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opengl/libs/ETC1/etc1.cpp b/opengl/libs/ETC1/etc1.cpp index 5ed2c3c49f..97d10851de 100644 --- a/opengl/libs/ETC1/etc1.cpp +++ b/opengl/libs/ETC1/etc1.cpp @@ -149,13 +149,13 @@ inline int divideBy255(int d) { static inline int convert8To4(int b) { int c = b & 0xff; - return divideBy255(b * 15); + return divideBy255(c * 15); } static inline int convert8To5(int b) { int c = b & 0xff; - return divideBy255(b * 31); + return divideBy255(c * 31); } static |