diff options
author | Chad Versace <[email protected]> | 2015-09-25 09:52:26 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-09-30 15:31:04 -0700 |
commit | 56367b0290919651e4c104b3e798cc5588272d3c (patch) | |
tree | e915a9e055fc14255eb99e693da9f4f9d712e542 /src/mesa/drivers/dri/i965/intel_mipmap_tree.h | |
parent | b7882ae6777d53b32f1625c6270cdc95e5b7b802 (diff) |
i965/miptree: Rename intel_miptree_map::mt -> ::linear_mt (v2)
Because that's what it is. It's an untiled, *linear* miptree.
v2:
- Add space after /*.
- Use one comment per function argument.
Reviewed-by: Anuj Phogat <[email protected]>
Acked-by: Ben Widawsky <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_mipmap_tree.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_mipmap_tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.h b/src/mesa/drivers/dri/i965/intel_mipmap_tree.h index 5eb5052b597..eba7203bd9b 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.h +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.h @@ -82,7 +82,7 @@ struct intel_miptree_map { /** Possibly malloced temporary buffer for the mapping. */ void *buffer; /** Possible pointer to a temporary linear miptree for the mapping. */ - struct intel_mipmap_tree *mt; + struct intel_mipmap_tree *linear_mt; /** Pointer to the start of (map_x, map_y) returned by the mapping. */ void *ptr; /** Stride of the mapping. */ |