Merge commit 'origin/master' into gallium-0.2
[mesa.git] / src / gallium / drivers / nv50 / nv50_screen.h
1 #ifndef __NV50_SCREEN_H__
2 #define __NV50_SCREEN_H__
3
4 #include "pipe/p_screen.h"
5
6 struct nv50_screen {
7 struct pipe_screen pipe;
8
9 struct nouveau_winsys *nvws;
10
11 unsigned cur_pctx;
12
13 struct nouveau_grobj *tesla;
14 struct nouveau_notifier *sync;
15
16 struct pipe_buffer *constbuf;
17 struct nouveau_resource *vp_data_heap;
18
19 struct pipe_buffer *tic;
20 struct pipe_buffer *tsc;
21
22 struct nouveau_stateobj *static_init;
23 };
24
25 static INLINE struct nv50_screen *
26 nv50_screen(struct pipe_screen *screen)
27 {
28 return (struct nv50_screen *)screen;
29 }
30
31 void nv50_surface_init_screen_functions(struct pipe_screen *);
32
33 #endif