[Mesa-dev] [PATCH 07/31] i965/blorp/genX: Move emit_urb_config into another helper
Jason Ekstrand
jason at jlekstrand.net
Fri Aug 19 16:55:44 UTC 2016
---
src/mesa/drivers/dri/i965/genX_blorp_exec.c | 30 ++++++++++++++++-------------
1 file changed, 17 insertions(+), 13 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/genX_blorp_exec.c b/src/mesa/drivers/dri/i965/genX_blorp_exec.c
index 402ae3f..7e09299 100644
--- a/src/mesa/drivers/dri/i965/genX_blorp_exec.c
+++ b/src/mesa/drivers/dri/i965/genX_blorp_exec.c
@@ -100,6 +100,22 @@ blorp_alloc_vertex_buffer(struct blorp_context *blorp, uint32_t size,
}
static void
+blorp_emit_urb_config(struct brw_context *brw, unsigned vs_entry_size)
+{
+#if GEN_GEN >= 7
+ if (!(brw->ctx.NewDriverState & (BRW_NEW_CONTEXT | BRW_NEW_URB_SIZE)) &&
+ brw->urb.vsize >= vs_entry_size)
+ return;
+
+ brw->ctx.NewDriverState |= BRW_NEW_URB_SIZE;
+
+ gen7_upload_urb(brw, vs_entry_size, false, false);
+#else
+ gen6_upload_urb(brw, vs_entry_size, false, 0);
+#endif
+}
+
+static void
blorp_emit_3dstate_multisample(struct brw_context *brw, unsigned samples)
{
#if GEN_GEN >= 8
@@ -200,19 +216,7 @@ static void
emit_urb_config(struct brw_context *brw,
const struct brw_blorp_params *params)
{
- const unsigned vs_entry_size = gen7_blorp_get_vs_entry_size(params);
-
-#if GEN_GEN >= 7
- if (!(brw->ctx.NewDriverState & (BRW_NEW_CONTEXT | BRW_NEW_URB_SIZE)) &&
- brw->urb.vsize >= vs_entry_size)
- return;
-
- brw->ctx.NewDriverState |= BRW_NEW_URB_SIZE;
-
- gen7_upload_urb(brw, vs_entry_size, false, false);
-#else
- gen6_upload_urb(brw, vs_entry_size, false, 0);
-#endif
+ blorp_emit_urb_config(brw, gen7_blorp_get_vs_entry_size(params));
}
static void
--
2.5.0.400.gff86faf
More information about the mesa-dev
mailing list