DRI2: report swap events correctly in direct rendered case
[mesa.git] / src / gallium / winsys / g3dvl / nouveau / nouveau_screen_vl.h
1 #ifndef __NOUVEAU_SCREEN_VL_H__
2 #define __NOUVEAU_SCREEN_VL_H__
3
4 #include <driclient.h>
5 #include <common/nouveau_screen.h>
6
7 /* TODO: Investigate using DRI options for interesting things */
8 /*#include "xmlconfig.h"*/
9
10 struct nouveau_screen_vl
11 {
12 struct nouveau_screen base;
13 dri_screen_t *dri_screen;
14 /*driOptionCache option_cache;*/
15 };
16
17 int nouveau_screen_create(dri_screen_t *dri_screen, dri_framebuffer_t *dri_framebuf);
18 void nouveau_screen_destroy(dri_screen_t *dri_screen);
19
20 #endif