blob: 9354f01e18a15f0f8dbd9696c1262dbb340590af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef BRW_PIPE_RAST_H
#define BRW_PIPE_RAST_H
#include "brw_clip.h"
struct brw_rasterizer_state {
struct pipe_rasterizer_state templ; /* for draw module */
/* Precalculated hardware state:
*/
struct brw_clip_prog_key clip_key;
struct brw_line_stipple bls;
unsigned unfilled_aa_line;
};
#endif
|