mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 15:58:05 +02:00
i965: Remove unused userclip flags.
brw_vs_prog_data::userclip hasn't been used since commitf0cecd4(i965: Move VUE map computation to once at VS compile time). brw_gs_prog_key::userclip_active hasn't been used since commit9f3d321(i965: Make the userclip flag for the VUE map come from VS prog data). Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
dfbcb1849c
commit
444246c7e3
3 changed files with 0 additions and 5 deletions
|
|
@ -448,7 +448,6 @@ struct brw_vs_prog_data {
|
|||
GLuint urb_entry_size;
|
||||
|
||||
bool uses_vertexid;
|
||||
bool userclip;
|
||||
|
||||
int num_surfaces;
|
||||
|
||||
|
|
|
|||
|
|
@ -181,9 +181,6 @@ static void populate_key( struct brw_context *brw,
|
|||
key->pv_first = true;
|
||||
}
|
||||
|
||||
/* CACHE_NEW_VS_PROG (part of VUE map)*/
|
||||
key->userclip_active = brw->vs.prog_data->userclip;
|
||||
|
||||
if (intel->gen >= 7) {
|
||||
/* On Gen7 and later, we don't use GS (yet). */
|
||||
key->need_gs_prog = false;
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ struct brw_gs_prog_key {
|
|||
|
||||
GLuint pv_first:1;
|
||||
GLuint need_gs_prog:1;
|
||||
GLuint userclip_active:1;
|
||||
GLuint rasterizer_discard:1;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue