summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/llvmpipe/lp_setup.c
diff options
context:
space:
mode:
authorRoland Scheidegger <[email protected]>2014-07-01 01:54:30 +0200
committerRoland Scheidegger <[email protected]>2014-07-02 01:55:59 +0200
commitb4c3246e7b2e5d8c19bdb6f71efa3cc2b948b1ce (patch)
tree15bf7029177cebccf432a96f46dfcf90f24ce61b /src/gallium/drivers/llvmpipe/lp_setup.c
parent188ba1d6ec2468fa3405e4382901347b2ac9396b (diff)
llvmpipe: (trivial) rename linear_mip_offsets to mip_offsets
Since switching to non-swizzled rendering we only have "normal", aka linear, offsets. Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c
index 77ac3af993d..046611aa736 100644
--- a/src/gallium/drivers/llvmpipe/lp_setup.c
+++ b/src/gallium/drivers/llvmpipe/lp_setup.c
@@ -854,7 +854,7 @@ lp_setup_set_fragment_sampler_views(struct lp_setup_context *setup,
* could get mip offset directly but need call above to
* invoke tiled->linear conversion.
*/
- assert(lp_tex->linear_mip_offsets[j] == jit_tex->mip_offsets[j]);
+ assert(lp_tex->mip_offsets[j] == jit_tex->mip_offsets[j]);
jit_tex->row_stride[j] = lp_tex->row_stride[j];
jit_tex->img_stride[j] = lp_tex->img_stride[j];
}