From: Brian Paul Date: Mon, 19 Apr 2010 23:16:15 +0000 (-0600) Subject: llvmpipe: remove dead code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c93cd13ba7b7c129256f6cb82ce04b066f3bb16;p=mesa.git llvmpipe: remove dead code --- diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c index 1bd5f57412e..6be13c60a57 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.c +++ b/src/gallium/drivers/llvmpipe/lp_setup.c @@ -526,14 +526,9 @@ lp_setup_set_fragment_sampler_views(struct lp_setup_context *setup, /* regular texture - setup array of mipmap level pointers */ int j; for (j = 0; j <= tex->last_level; j++) { -#if 0 - jit_tex->data[j] = - (ubyte *) lp_tex->data + lp_tex->level_offset[j]; -#else jit_tex->data[j] = llvmpipe_get_texture_image_all(lp_tex, j, LP_TEX_USAGE_READ, LP_TEX_LAYOUT_LINEAR); -#endif jit_tex->row_stride[j] = lp_tex->row_stride[j]; jit_tex->img_stride[j] = lp_tex->img_stride[j]; }