blob: 538ec225511341e3574b268308adafe9c86d4a91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef LP_RAST_PRIV_H
#define LP_RAST_PRIV_H
#include "lp_rast.h"
struct lp_rasterizer {
/* We can choose whatever layout for the internal tile storage we
* prefer:
*/
struct {
unsigned color[TILESIZE][TILESIZE];
unsigned depth[TILESIZE][TILESIZE];
char stencil[TILESIZE][TILESIZE];
} tile;
unsigned x;
unsigned y;
struct {
struct pipe_surface *color;
struct pipe_surface *zstencil;
unsigned clear_color;
unsigned clear_depth;
char clear_stencil;
} state;
};
#endif
|