diff options
author | Jordan Justen <[email protected]> | 2018-02-28 17:14:50 -0800 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2018-07-09 23:02:33 -0700 |
commit | 65f2014740eb26c1b740dab435b9964e4bdb1164 (patch) | |
tree | a6df655b12c94d0e9e15208d9bc2d1a6ab8325a1 /src/mesa/drivers/dri/i965/brw_vs.c | |
parent | e426286e21f8a90f40aff2e7617287bfc3306652 (diff) |
i965: Replace brw_setup_tex_for_precompile brw with devinfo
Trying to make sure the setup of the default program key is not
dependent on the GL state.
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vs.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.c b/src/mesa/drivers/dri/i965/brw_vs.c index 5154dee3ca3..f024c33c02d 100644 --- a/src/mesa/drivers/dri/i965/brw_vs.c +++ b/src/mesa/drivers/dri/i965/brw_vs.c @@ -369,7 +369,7 @@ brw_vs_precompile(struct gl_context *ctx, struct gl_program *prog) memset(&key, 0, sizeof(key)); - brw_setup_tex_for_precompile(brw, &key.tex, prog); + brw_setup_tex_for_precompile(&brw->screen->devinfo, &key.tex, prog); key.program_string_id = bvp->id; key.clamp_vertex_color = (prog->info.outputs_written & |