diff options
author | Matt Turner <[email protected]> | 2015-08-06 10:59:15 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-08-06 12:33:26 -0700 |
commit | 9f78e27fc60b3473b708ab4ca04e4ebd6be6cf4e (patch) | |
tree | 0d88aa57df43a199e954da696e577ab4a8aa87d9 /src/mesa/drivers/dri/i965/intel_tex_image.c | |
parent | 1c175fc2e3a685b531920dec247086463ab9a154 (diff) |
i965: Rename MIPTREE_LAYOUT_ALLOC_* -> MIPTREE_LAYOUT_TILING_*.
Ben suggested that I rename MIPTREE_LAYOUT_ALLOC_ANY_TILED since it
needed to include no tiling at all, but the name
MIPTREE_LAYOUT_ALLOC_ANY is pretty nondescriptive. We can avoid
confusion by replacing "ALLOC" with "TILING" in the identifiers.
Reviewed-by: Ben Widawsky <[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 3611280012e..93a8cdee0cb 100644 --- a/src/mesa/drivers/dri/i965/intel_tex_image.c +++ b/src/mesa/drivers/dri/i965/intel_tex_image.c @@ -80,7 +80,7 @@ intel_miptree_create_for_teximage(struct brw_context *brw, height, depth, intelImage->base.Base.NumSamples, - layout_flags | MIPTREE_LAYOUT_ALLOC_ANY_TILED); + layout_flags | MIPTREE_LAYOUT_TILING_ANY); } static void |