/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_screen.h | 58 struct lp_rasterizer *rast; member in struct:llvmpipe_screen
|
lp_rast_priv.h | 92 struct lp_rasterizer *rast; member in struct:lp_rasterizer_task
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_screen.h | 58 struct lp_rasterizer *rast; member in struct:llvmpipe_screen
|
lp_rast_priv.h | 92 struct lp_rasterizer *rast; member in struct:lp_rasterizer_task
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_pipe_rasterizer.c | 68 struct svga_rasterizer_state *rast = CALLOC_STRUCT( svga_rasterizer_state ); local 71 rast->templ = *templ; 85 rast->shademode = svga_translate_flatshade( templ->flatshade ); 86 rast->cullmode = svga_translate_cullmode( templ->cull_face, 88 rast->scissortestenable = templ->scissor; 89 rast->multisampleantialias = templ->multisample; 90 rast->antialiasedlineenable = templ->line_smooth; 91 rast->lastpixel = templ->line_last_pixel; 92 rast->pointsprite = templ->sprite_coord_enable != 0x0; 93 rast->pointsize = templ->point_size [all...] |
svga_state_rss.c | 124 const struct svga_rasterizer_state *rast = svga->curr.rast; local 156 if (rast->templ.front_ccw) { 203 const struct svga_rasterizer_state *curr = svga->curr.rast; 233 const struct svga_rasterizer_state *curr = svga->curr.rast; 264 unsigned enabled = svga->curr.rast->templ.clip_plane_enable;
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_pipe_rasterizer.c | 68 struct svga_rasterizer_state *rast = CALLOC_STRUCT( svga_rasterizer_state ); local 71 rast->templ = *templ; 85 rast->shademode = svga_translate_flatshade( templ->flatshade ); 86 rast->cullmode = svga_translate_cullmode( templ->cull_face, 88 rast->scissortestenable = templ->scissor; 89 rast->multisampleantialias = templ->multisample; 90 rast->antialiasedlineenable = templ->line_smooth; 91 rast->lastpixel = templ->line_last_pixel; 92 rast->pointsprite = templ->sprite_coord_enable != 0x0; 93 rast->pointsize = templ->point_size [all...] |
svga_state_rss.c | 124 const struct svga_rasterizer_state *rast = svga->curr.rast; local 156 if (rast->templ.front_ccw) { 203 const struct svga_rasterizer_state *curr = svga->curr.rast; 233 const struct svga_rasterizer_state *curr = svga->curr.rast; 264 unsigned enabled = svga->curr.rast->templ.clip_plane_enable;
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_pipe_unfilled.c | 163 const struct pipe_rasterizer_state *rast = stage->draw->rasterizer; local 165 unfilled->mode[0] = rast->front_ccw ? rast->fill_front : rast->fill_back; 166 unfilled->mode[1] = rast->front_ccw ? rast->fill_back : rast->fill_front;
|
draw_pipe_validate.c | 165 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 173 wide_lines = (roundf(rast->line_width) > draw->pipeline.wide_line_threshold 174 && !rast->line_smooth); 177 if (rast->sprite_coord_enable && draw->pipeline.point_sprite) 179 else if (rast->point_smooth && draw->pipeline.aapoint) 181 else if (rast->point_size > draw->pipeline.wide_point_threshold) 183 else if (rast->point_quad_rasterization && draw->pipeline.wide_point_sprites) 195 if (rast->line_smooth && draw->pipeline.aaline) { 201 if (rast->point_smooth && draw->pipeline.aapoint) { 217 if (rast->line_stipple_enable && draw->pipeline.line_stipple) [all...] |
draw_pipe_wide_line.c | 157 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 161 r = draw_get_rasterizer_no_cull(draw, rast->scissor, rast->flatshade);
|
draw_context.c | 710 struct pipe_rasterizer_state rast; local 712 memset(&rast, 0, sizeof(rast)); 713 rast.scissor = scissor; 714 rast.flatshade = flatshade; 715 rast.front_ccw = 1; 716 rast.gl_rasterization_rules = draw->rasterizer->gl_rasterization_rules; 719 pipe->create_rasterizer_state(pipe, &rast);
|
draw_pipe_aapoint.c | 684 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 725 r = draw_get_rasterizer_no_cull(draw, rast->scissor, rast->flatshade);
|
draw_pipe_wide_point.c | 98 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 99 const uint texcoord_mode = rast->sprite_coord_mode; 199 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 202 wide->half_point_size = 0.5f * rast->point_size; 206 if (rast->gl_rasterization_rules) { 212 r = draw_get_rasterizer_no_cull(draw, rast->scissor, rast->flatshade); 218 if ((rast->point_size > draw->pipeline.wide_point_threshold) || 219 (rast->point_quad_rasterization && draw->pipeline.point_sprite)) { 228 if (rast->point_quad_rasterization) [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pipe_unfilled.c | 163 const struct pipe_rasterizer_state *rast = stage->draw->rasterizer; local 165 unfilled->mode[0] = rast->front_ccw ? rast->fill_front : rast->fill_back; 166 unfilled->mode[1] = rast->front_ccw ? rast->fill_back : rast->fill_front;
|
draw_pipe_validate.c | 165 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 173 wide_lines = (roundf(rast->line_width) > draw->pipeline.wide_line_threshold 174 && !rast->line_smooth); 177 if (rast->sprite_coord_enable && draw->pipeline.point_sprite) 179 else if (rast->point_smooth && draw->pipeline.aapoint) 181 else if (rast->point_size > draw->pipeline.wide_point_threshold) 183 else if (rast->point_quad_rasterization && draw->pipeline.wide_point_sprites) 195 if (rast->line_smooth && draw->pipeline.aaline) { 201 if (rast->point_smooth && draw->pipeline.aapoint) { 217 if (rast->line_stipple_enable && draw->pipeline.line_stipple) [all...] |
draw_pipe_wide_line.c | 157 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 161 r = draw_get_rasterizer_no_cull(draw, rast->scissor, rast->flatshade);
|
draw_context.c | 710 struct pipe_rasterizer_state rast; local 712 memset(&rast, 0, sizeof(rast)); 713 rast.scissor = scissor; 714 rast.flatshade = flatshade; 715 rast.front_ccw = 1; 716 rast.gl_rasterization_rules = draw->rasterizer->gl_rasterization_rules; 719 pipe->create_rasterizer_state(pipe, &rast);
|
draw_pipe_aapoint.c | 684 const struct pipe_rasterizer_state *rast = draw->rasterizer; local 725 r = draw_get_rasterizer_no_cull(draw, rast->scissor, rast->flatshade);
|