blob: 800a9208a7ca304ace3c1558290505eb9d210e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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;
};
#endif
|