blob: 1498087819c4db66f5d43177a30b1fddde7d6fa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __NOUVEAU_SCREEN_DRI_H__
#define __NOUVEAU_SCREEN_DRI_H__
#include "../common/nouveau_screen.h"
#include "xmlconfig.h"
struct nouveau_screen_dri {
struct nouveau_screen base;
__DRIscreenPrivate *driScrnPriv;
driOptionCache option_cache;
};
#endif
|