diff options
author | Roland Scheidegger <[email protected]> | 2013-05-28 02:34:27 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2013-05-29 00:41:06 +0200 |
commit | 33fcce36828d6ae413c1673f8de5c56fbd8ba4a1 (patch) | |
tree | 3f32cfba0b56c3e915ddb76947589f19416b816b /src/gallium/drivers/llvmpipe/lp_setup.c | |
parent | b3abc93f47cbc4c0a5f4304c66a79395c0aa8220 (diff) |
llvmpipe: get rid of tiled/linear layout remains
Eliminate the rest of the no longer needed layout logic.
(It is possible some code could be simplified a bit further still.)
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c index 9fef34e77e0..a6dce24bec2 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.c +++ b/src/gallium/drivers/llvmpipe/lp_setup.c @@ -704,8 +704,7 @@ lp_setup_set_fragment_sampler_views(struct lp_setup_context *setup, * still are tiled. */ mip_ptr = llvmpipe_get_texture_image_all(lp_tex, first_level, - LP_TEX_USAGE_READ, - LP_TEX_LAYOUT_LINEAR); + LP_TEX_USAGE_READ); jit_tex->base = lp_tex->linear_img.data; } else { @@ -736,8 +735,7 @@ lp_setup_set_fragment_sampler_views(struct lp_setup_context *setup, if (llvmpipe_resource_is_texture(res)) { for (j = first_level; j <= last_level; j++) { mip_ptr = llvmpipe_get_texture_image_all(lp_tex, j, - LP_TEX_USAGE_READ, - LP_TEX_LAYOUT_LINEAR); + LP_TEX_USAGE_READ); jit_tex->mip_offsets[j] = (uint8_t *)mip_ptr - (uint8_t *)jit_tex->base; /* * could get mip offset directly but need call above to |