diff options
author | Timothy Arceri <[email protected]> | 2016-10-19 12:11:06 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-10-26 14:29:36 +1100 |
commit | 9605b98a078654f6f76e85221599e5fa8c073de6 (patch) | |
tree | e5b3666d491fa200674dee9a635684d721d4f84d /src/mesa/state_tracker/st_atom.c | |
parent | 5a228c0aae347ce68009f165427581e149611d65 (diff) |
i965/mesa/st: eliminate gl_compute_program
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_atom.c')
-rw-r--r-- | src/mesa/state_tracker/st_atom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_atom.c b/src/mesa/state_tracker/st_atom.c index 573615e2ea0..a86cffc4c65 100644 --- a/src/mesa/state_tracker/st_atom.c +++ b/src/mesa/state_tracker/st_atom.c @@ -178,7 +178,7 @@ void st_validate_state( struct st_context *st, enum st_pipeline pipeline ) case ST_PIPELINE_COMPUTE: { struct st_compute_program *old_cp = st->cp; - struct gl_compute_program *new_cp = ctx->ComputeProgram._Current; + struct gl_program *new_cp = ctx->ComputeProgram._Current; if (new_cp != &old_cp->Base) { if (old_cp) |