Lines Matching refs:new_state
422 _swrast_sleep( struct gl_context *ctx, GLbitfield new_state ) in _swrast_sleep() argument
424 (void) ctx; (void) new_state; in _swrast_sleep()
429 _swrast_invalidate_state( struct gl_context *ctx, GLbitfield new_state ) in _swrast_invalidate_state() argument
434 swrast->NewState |= new_state; in _swrast_invalidate_state()
442 new_state = ~0; in _swrast_invalidate_state()
445 if (new_state & swrast->InvalidateTriangleMask) in _swrast_invalidate_state()
448 if (new_state & swrast->InvalidateLineMask) in _swrast_invalidate_state()
451 if (new_state & swrast->InvalidatePointMask) in _swrast_invalidate_state()
454 if (new_state & _SWRAST_NEW_BLEND_FUNC) in _swrast_invalidate_state()
457 if (new_state & _SWRAST_NEW_TEXTURE_SAMPLE_FUNC) in _swrast_invalidate_state()
652 _swrast_InvalidateState( struct gl_context *ctx, GLbitfield new_state ) in _swrast_InvalidateState() argument
657 SWRAST_CONTEXT(ctx)->InvalidateState( ctx, new_state ); in _swrast_InvalidateState()