diff options
author | Kenneth Graunke <[email protected]> | 2016-09-08 23:48:53 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-10-05 19:21:09 -0700 |
commit | 82c97ac710e31bea1f954060950f8b9faf2fb4d6 (patch) | |
tree | f4c4e1c1d19406a8c90a1707e45c546ad7db3b16 /src/mesa/drivers/dri/i965/brw_state_upload.c | |
parent | 40258a13d5bf81303585eaf1859fcb85e373be3e (diff) |
i965: Eliminate brw->tcs.prog_data pointer.
Just say no to:
- brw->tcs.base.prog_data = &brw->tcs.prog_data->base.base;
We'll just use the brw_stage_prog_data pointer in brw_stage_state
and downcast it to brw_tcs_prog_data as needed.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_state_upload.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_state_upload.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_state_upload.c b/src/mesa/drivers/dri/i965/brw_state_upload.c index 6ace37bdc01..3a5ddbde1eb 100644 --- a/src/mesa/drivers/dri/i965/brw_state_upload.c +++ b/src/mesa/drivers/dri/i965/brw_state_upload.c @@ -686,7 +686,6 @@ brw_upload_tess_programs(struct brw_context *brw) brw_upload_tcs_prog(brw); brw_upload_tes_prog(brw); } else { - brw->tcs.prog_data = NULL; brw->tcs.base.prog_data = NULL; brw->tes.prog_data = NULL; brw->tes.base.prog_data = NULL; |