llvmpipe: fix loop over mipmap levels
This commit is contained in:
@@ -475,7 +475,7 @@ lp_setup_set_sampler_textures( struct setup_context *setup,
|
|||||||
if (!lp_tex->dt) {
|
if (!lp_tex->dt) {
|
||||||
/* regular texture - setup array of mipmap level pointers */
|
/* regular texture - setup array of mipmap level pointers */
|
||||||
int j;
|
int j;
|
||||||
for (j = 0; j < LP_MAX_TEXTURE_2D_LEVELS; j++) {
|
for (j = 0; j <= tex->last_level; j++) {
|
||||||
jit_tex->data[j] =
|
jit_tex->data[j] =
|
||||||
(ubyte *) lp_tex->data + lp_tex->level_offset[j];
|
(ubyte *) lp_tex->data + lp_tex->level_offset[j];
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user