Mesa (master): i965/blorp: Store input read mask

Topi Pohjolainen tpohjola at kemper.freedesktop.org
Mon Jul 4 07:12:50 UTC 2016


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

Author: Topi Pohjolainen <topi.pohjolainen at intel.com>
Date:   Wed Jun  1 12:27:56 2016 +0300

i965/blorp: Store input read mask

Signed-off-by: Topi Pohjolainen <topi.pohjolainen at intel.com>
Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>

---

 src/mesa/drivers/dri/i965/brw_blorp.c | 1 +
 src/mesa/drivers/dri/i965/brw_blorp.h | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c
index ce37838..4d6c0ba 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp.c
+++ b/src/mesa/drivers/dri/i965/brw_blorp.c
@@ -233,6 +233,7 @@ brw_blorp_compile_nir_shader(struct brw_context *brw, struct nir_shader *nir,
    prog_data->persample_msaa_dispatch = wm_prog_data.persample_dispatch;
    prog_data->flat_inputs = wm_prog_data.flat_inputs;
    prog_data->num_varying_inputs = wm_prog_data.num_varying_inputs;
+   prog_data->inputs_read = nir->info.inputs_read;
 
    prog_data->nr_params = wm_prog_data.base.nr_params;
    for (unsigned i = 0; i < ARRAY_SIZE(param); i++)
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.h b/src/mesa/drivers/dri/i965/brw_blorp.h
index a4036c1..c842170 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp.h
+++ b/src/mesa/drivers/dri/i965/brw_blorp.h
@@ -229,6 +229,7 @@ struct brw_blorp_prog_data
     */
    uint32_t flat_inputs;
    unsigned num_varying_inputs;
+   GLbitfield64 inputs_read;
 
    /* The compiler will re-arrange push constants and store the upload order
     * here. Given an index 'i' in the final upload buffer, param[i] gives the




More information about the mesa-commit mailing list