Fix convert8To4, convert8To5

See b/5680952 "Compilation warnings in etc1.cpp" for discussion.

Fixes b/5680952

Change-Id: I0af6ba5ed5e60f3ed7a6a28eba3b09504fee1a3f
This commit is contained in:
Jack Palevich 2011-12-09 14:06:07 -08:00
parent c4d605f44b
commit 2b93f0bf44
1 changed files with 2 additions and 2 deletions

View File

@ -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