From: Jason Ekstrand Date: Wed, 17 Aug 2016 15:08:36 +0000 (-0700) Subject: i965/blorp/genX: Move emit_urb_config into another helper X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c380b639f47742de1cdaceeb534facc936e3d62;p=mesa.git i965/blorp/genX: Move emit_urb_config into another helper Signed-off-by: Jason Ekstrand Reviewed-by: Topi Pohjolainen --- diff --git a/src/mesa/drivers/dri/i965/genX_blorp_exec.c b/src/mesa/drivers/dri/i965/genX_blorp_exec.c index 68c3c27bfc3..afbdbaf902f 100644 --- a/src/mesa/drivers/dri/i965/genX_blorp_exec.c +++ b/src/mesa/drivers/dri/i965/genX_blorp_exec.c @@ -99,6 +99,22 @@ blorp_alloc_vertex_buffer(struct blorp_context *blorp, uint32_t size, return data; } +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) { @@ -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