i965: Remove unused userclip flags.

brw_vs_prog_data::userclip hasn't been used since commit f0cecd4
(i965: Move VUE map computation to once at VS compile time).

brw_gs_prog_key::userclip_active hasn't been used since commit 9f3d321
(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:
Paul Berry 2013-02-16 10:32:50 -08:00
parent dfbcb1849c
commit 444246c7e3
3 changed files with 0 additions and 5 deletions

View file

@ -448,7 +448,6 @@ struct brw_vs_prog_data {
GLuint urb_entry_size;
bool uses_vertexid;
bool userclip;
int num_surfaces;

View file

@ -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;

View file

@ -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;
/**