388d6be9bbce6a1a6c34992e989e43217d91d157
[mesa.git] / src / gallium / winsys / dri / nouveau / nouveau_screen.h
1 #ifndef __NOUVEAU_SCREEN_H__
2 #define __NOUVEAU_SCREEN_H__
3
4 #include "xmlconfig.h"
5
6 struct nouveau_screen {
7 __DRIscreenPrivate *driScrnPriv;
8 driOptionCache option_cache;
9
10 struct nouveau_device *device;
11
12 uint32_t front_offset;
13 uint32_t front_pitch;
14 uint32_t front_cpp;
15 uint32_t front_height;
16
17 void *nvc;
18 };
19
20 #endif