Merge branch 'gallium-msaa'
[mesa.git] / src / gallium / drivers / i965 / brw_pipe_rast.h
1 #ifndef BRW_PIPE_RAST_H
2 #define BRW_PIPE_RAST_H
3
4 #include "brw_clip.h"
5
6 struct brw_rasterizer_state {
7 struct pipe_rasterizer_state templ; /* for draw module */
8
9 /* Precalculated hardware state:
10 */
11 struct brw_clip_prog_key clip_key;
12 struct brw_line_stipple bls;
13 unsigned unfilled_aa_line;
14 };
15
16 #endif