[Mesa-dev] [PATCH 03/13] i965: Move unmap_movntdqa before map_movntdqa
Scott D Phillips
scott.d.phillips at intel.com
Mon Apr 30 17:25:42 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>
---
src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
index 22947c202c2..0548ec2d8f5 100644
--- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
@@ -3193,6 +3193,18 @@ fail:
* "Map" a buffer by copying it to an untiled temporary using MOVNTDQA.
*/
#if defined(USE_SSE41)
+static void
+intel_miptree_unmap_movntdqa(struct brw_context *brw,
+ struct intel_mipmap_tree *mt,
+ struct intel_miptree_map *map,
+ unsigned int level,
+ unsigned int slice)
+{
+ _mesa_align_free(map->buffer);
+ map->buffer = NULL;
+ map->ptr = NULL;
+}
+
static void
intel_miptree_map_movntdqa(struct brw_context *brw,
struct intel_mipmap_tree *mt,
@@ -3251,18 +3263,6 @@ intel_miptree_map_movntdqa(struct brw_context *brw,
intel_miptree_unmap_raw(mt);
}
-
-static void
-intel_miptree_unmap_movntdqa(struct brw_context *brw,
- struct intel_mipmap_tree *mt,
- struct intel_miptree_map *map,
- unsigned int level,
- unsigned int slice)
-{
- _mesa_align_free(map->buffer);
- map->buffer = NULL;
- map->ptr = NULL;
-}
#endif
static void
--
2.14.3
More information about the mesa-dev
mailing list