diff options
author | Jason Ekstrand <[email protected]> | 2017-08-02 11:28:02 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-08-07 09:31:11 -0700 |
commit | 55116839d9bbf50d5128938d8dc11f44828b82a2 (patch) | |
tree | bea9bd6e6b9c4ae06ddf5707a3fcd7005346188c /src/mesa/drivers/dri/i965/intel_tex_image.c | |
parent | 17794991668193a9ff0dce1f5a7dff5473472880 (diff) |
i965/miptree: Delete MIPTREE_LAYOUT_TILING_(Y|ANY)
The only force tiling flag we really care about is LAYOUT_TILING_NONE.
The others don't actually do anything but add confusion.
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_tex_image.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_tex_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_tex_image.c b/src/mesa/drivers/dri/i965/intel_tex_image.c index beed1609bdf..598d39cc5ec 100644 --- a/src/mesa/drivers/dri/i965/intel_tex_image.c +++ b/src/mesa/drivers/dri/i965/intel_tex_image.c @@ -124,7 +124,7 @@ intel_miptree_create_for_teximage(struct brw_context *brw, height, depth, MAX2(intelImage->base.Base.NumSamples, 1), - layout_flags | MIPTREE_LAYOUT_TILING_ANY); + layout_flags); } static void |