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_fbo.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_fbo.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_fbo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_fbo.c b/src/mesa/drivers/dri/i965/intel_fbo.c index 9e27593c0c1..71bc90d8da1 100644 --- a/src/mesa/drivers/dri/i965/intel_fbo.c +++ b/src/mesa/drivers/dri/i965/intel_fbo.c @@ -944,8 +944,7 @@ intel_renderbuffer_move_to_temp(struct brw_context *brw, struct intel_mipmap_tree *new_mt; int width, height, depth; - uint32_t layout_flags = MIPTREE_LAYOUT_ACCELERATED_UPLOAD | - MIPTREE_LAYOUT_TILING_ANY; + uint32_t layout_flags = MIPTREE_LAYOUT_ACCELERATED_UPLOAD; intel_get_image_dims(rb->TexImage, &width, &height, &depth); |