From: Brian Paul Date: Mon, 12 Mar 2012 00:31:32 +0000 (-0600) Subject: tnl: stop using _DD_NEW_x flags X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d2b849a227be0dba1730de65e4cefaf450cd6166;p=mesa.git tnl: stop using _DD_NEW_x flags Reviewed-by: José Fonseca Reviewed-by: Eric Anholt --- diff --git a/src/mesa/tnl/t_vertex.c b/src/mesa/tnl/t_vertex.c index 6582949a096..580f95df3ee 100644 --- a/src/mesa/tnl/t_vertex.c +++ b/src/mesa/tnl/t_vertex.c @@ -269,7 +269,8 @@ void *_tnl_get_vertex( struct gl_context *ctx, GLuint nr ) void _tnl_invalidate_vertex_state( struct gl_context *ctx, GLuint new_state ) { - if (new_state & (_DD_NEW_TRI_LIGHT_TWOSIDE|_DD_NEW_TRI_UNFILLED) ) { + /* if two-sided lighting changes or filled/unfilled polygon state changes */ + if (new_state & (_NEW_LIGHT | _NEW_POLYGON) ) { struct tnl_clipspace *vtx = GET_VERTEX_STATE(ctx); vtx->new_inputs = ~0; vtx->interp = choose_interp_func;