[Mesa-dev] [PATCH 01/13] i965: Move unmap_gtt before map_gtt

Scott D Phillips scott.d.phillips at intel.com
Mon Apr 30 17:25:40 UTC 2018


From: Chris Wilson <chris at chris-wilson.co.uk>

Reorder code to avoid a forward declaration in the next patch.

Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
Reviewed-by: Samuel Iglesias Gonsálvez <siglesias at igalia.com>
---
 src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
index 93a91fd8081..ccd5b4bf023 100644
--- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
@@ -3065,6 +3065,12 @@ intel_miptree_unmap_raw(struct intel_mipmap_tree *mt)
    brw_bo_unmap(mt->bo);
 }
 
+static void
+intel_miptree_unmap_gtt(struct intel_mipmap_tree *mt)
+{
+   intel_miptree_unmap_raw(mt);
+}
+
 static void
 intel_miptree_map_gtt(struct brw_context *brw,
 		      struct intel_mipmap_tree *mt,
@@ -3112,12 +3118,6 @@ intel_miptree_map_gtt(struct brw_context *brw,
        x, y, map->ptr, map->stride);
 }
 
-static void
-intel_miptree_unmap_gtt(struct intel_mipmap_tree *mt)
-{
-   intel_miptree_unmap_raw(mt);
-}
-
 static void
 intel_miptree_map_blit(struct brw_context *brw,
 		       struct intel_mipmap_tree *mt,
-- 
2.14.3



More information about the mesa-dev mailing list