Lines Matching refs:swrast
206 const SWcontext *swrast = SWRAST_CONTEXT(ctx); in osmesa_choose_line_function() local
231 if (swrast->_RasterMask == DEPTH_BIT in osmesa_choose_line_function()
238 if (swrast->_RasterMask == 0) { in osmesa_choose_line_function()
319 const SWcontext *swrast = SWRAST_CONTEXT(ctx); in osmesa_choose_triangle_function() local
347 if (swrast->_RasterMask == DEPTH_BIT && in osmesa_choose_triangle_function()
371 SWcontext *swrast = SWRAST_CONTEXT(ctx); in osmesa_choose_triangle() local
373 swrast->Triangle = osmesa_choose_triangle_function( ctx ); in osmesa_choose_triangle()
374 if (!swrast->Triangle) in osmesa_choose_triangle()
381 SWcontext *swrast = SWRAST_CONTEXT(ctx); in osmesa_choose_line() local
383 swrast->Line = osmesa_choose_line_function( ctx ); in osmesa_choose_line()
384 if (!swrast->Line) in osmesa_choose_line()
889 SWcontext *swrast; in OSMesaCreateContextAttribs() local
916 swrast = SWRAST_CONTEXT( ctx ); in OSMesaCreateContextAttribs()
917 swrast->choose_line = osmesa_choose_line; in OSMesaCreateContextAttribs()
918 swrast->choose_triangle = osmesa_choose_triangle; in OSMesaCreateContextAttribs()