Mesa (master): anv/gen7: Make use of local variable prog_data

Anuj Phogat aphogat at kemper.freedesktop.org
Tue Oct 4 20:28:03 UTC 2016


Module: Mesa
Branch: master
Commit: 517b1bf49922af12183bdcc5b4e648c897a59d5a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=517b1bf49922af12183bdcc5b4e648c897a59d5a

Author: Anuj Phogat <anuj.phogat at gmail.com>
Date:   Mon Sep 26 11:10:56 2016 -0700

anv/gen7: Make use of local variable prog_data

Signed-off-by: Anuj Phogat <anuj.phogat at gmail.com>
Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>

---

 src/mesa/drivers/dri/i965/gen7_vs_state.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/gen7_vs_state.c b/src/mesa/drivers/dri/i965/gen7_vs_state.c
index 57e0419..d3bd9fd 100644
--- a/src/mesa/drivers/dri/i965/gen7_vs_state.c
+++ b/src/mesa/drivers/dri/i965/gen7_vs_state.c
@@ -42,7 +42,7 @@ upload_vs_state(struct brw_context *brw)
    if (!brw->is_haswell && !brw->is_baytrail)
       gen7_emit_vs_workaround_flush(brw);
 
-   if (brw->vs.prog_data->base.base.use_alt_mode)
+   if (prog_data->base.use_alt_mode)
       floating_point_mode = GEN6_VS_FLOATING_POINT_MODE_ALT;
 
    BEGIN_BATCH(6);
@@ -51,7 +51,7 @@ upload_vs_state(struct brw_context *brw)
    OUT_BATCH(floating_point_mode |
 	     ((ALIGN(stage_state->sampler_count, 4)/4) <<
               GEN6_VS_SAMPLER_COUNT_SHIFT) |
-             ((brw->vs.prog_data->base.base.binding_table.size_bytes / 4) <<
+             ((prog_data->base.binding_table.size_bytes / 4) <<
               GEN6_VS_BINDING_TABLE_ENTRY_COUNT_SHIFT));
 
    if (prog_data->base.total_scratch) {




More information about the mesa-commit mailing list