summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/dri/nouveau/nouveau_screen.h
blob: 019823bd44d9be39806956963918fae1dceafe00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __NOUVEAU_SCREEN_H__
#define __NOUVEAU_SCREEN_H__

#include "xmlconfig.h"
#include "nouveau_device.h"

struct nouveau_screen {
	__DRIscreenPrivate *driScrnPriv;
	driOptionCache      option_cache;

	struct nouveau_device *device;

	uint32_t front_offset;
	uint32_t front_pitch;
	uint32_t front_cpp;
	uint32_t front_height;
};

#endif