<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<p>Patches 1-6 are,</p>
<p> Reviewed-by: Samuel Iglesias Gonsálvez <a
class="moz-txt-link-rfc2396E" href="mailto:siglesias@igalia.com"><siglesias@igalia.com></a>
<br>
</p>
<br>
<div class="moz-cite-prefix">On 12/04/18 02:10, Chris Wilson wrote:<br>
</div>
<blockquote type="cite"
cite="mid:20180412001020.23315-1-chris@chris-wilson.co.uk">
<pre wrap="">Reorder code to avoid a forward declaration in the next patch.
Signed-off-by: Chris Wilson <a class="moz-txt-link-rfc2396E" href="mailto:chris@chris-wilson.co.uk"><chris@chris-wilson.co.uk></a>
---
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 8d3ddd56544..f90d462b925 100644
--- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
@@ -3080,6 +3080,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,
@@ -3127,12 +3133,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,
</pre>
</blockquote>
<br>
</body>
</html>