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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user