diff options
author | Kenneth Graunke <[email protected]> | 2015-08-27 23:55:28 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-09-03 22:31:03 -0700 |
commit | 27e83b62bb52de7a681ed82679a707555023f43d (patch) | |
tree | 034e5685baeac0273c060883b200328547f18eb2 /src/mesa/drivers/dri/i965/brw_vec4.h | |
parent | 014b90221ad5cf833bfdd55b0336771d209f0f1d (diff) |
i965: Store a key_tex pointer in vec4_visitor.
I'm about to remove the base class for VS/GS/HS/DS program keys, at
which point we won't be able to use key->tex anymore. Instead, we'll
need to store a direct pointer (like we do in the FS backend).
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.h b/src/mesa/drivers/dri/i965/brw_vec4.h index 7c319326f04..10439f21af5 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.h +++ b/src/mesa/drivers/dri/i965/brw_vec4.h @@ -101,6 +101,7 @@ public: } const struct brw_vue_prog_key * const key; + const struct brw_sampler_prog_key_data * const key_tex; struct brw_vue_prog_data * const prog_data; unsigned int sanity_param_count; |