Merge branch 'nouveau-gallium-0.1' into darktama-gallium-0.1
[mesa.git] / src / mesa / drivers / dri / nouveau_winsys / nouveau_screen.h
1 #ifndef __NOUVEAU_SCREEN_H__
2 #define __NOUVEAU_SCREEN_H__
3
4 #include "xmlconfig.h"
5 #include "nouveau_device.h"
6
7 struct nouveau_screen {
8 __DRIscreenPrivate *driScrnPriv;
9 driOptionCache option_cache;
10
11 struct nouveau_device *device;
12
13 uint32_t front_offset;
14 uint32_t front_pitch;
15 uint32_t front_cpp;
16 uint32_t front_height;
17 };
18
19 #endif