svga: more comments for need_pipeline field

This commit is contained in:
Brian Paul 2011-02-11 13:54:15 -07:00
parent 6826d58bbf
commit f7d84c177f
1 changed files with 4 additions and 1 deletions

View File

@ -147,8 +147,11 @@ struct svga_rasterizer_state {
float pointsize;
unsigned hw_unfilled:16; /* PIPE_POLYGON_MODE_x */
unsigned need_pipeline:16; /* which prims do we need help for? */
/** Which prims do we need help for? Bitmask of (1 << PIPE_PRIM_x) flags */
unsigned need_pipeline:16;
/** For debugging: */
const char* need_pipeline_tris_str;
const char* need_pipeline_lines_str;
const char* need_pipeline_points_str;