gallium: Fix typeo in mipmap filter for GL_UNSIGNED_SHORT_1_5_5_5_REV

This is copied from Ian's commit a330933bb7
This commit is contained in:
Brian Paul
2008-12-19 16:14:48 -07:00
parent 93afa77945
commit e8d8060988
+1 -1
View File
@@ -420,7 +420,7 @@ do_row(enum dtype datatype, uint comps, int srcWidth,
const int rowAr0 = rowA[j] & 0x1f;
const int rowAr1 = rowA[k] & 0x1f;
const int rowBr0 = rowB[j] & 0x1f;
const int rowBr1 = rowB[k] & 0xf;
const int rowBr1 = rowB[k] & 0x1f;
const int rowAg0 = (rowA[j] >> 5) & 0x1f;
const int rowAg1 = (rowA[k] >> 5) & 0x1f;
const int rowBg0 = (rowB[j] >> 5) & 0x1f;