summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/g3dvl/vl_display.h
blob: e11fd4079939a8458968b74f3d391699ab473c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef vl_display_h
#define vl_display_h

#include "vl_types.h"

#ifdef VL_INTERNAL
struct vlDisplay
{
	vlNativeDisplay native;
};
#endif

int vlCreateDisplay
(
	vlNativeDisplay native_display,
	struct vlDisplay **display
);

int vlDestroyDisplay
(
	struct vlDisplay *display
);

vlNativeDisplay vlGetNativeDisplay
(
	struct vlDisplay *display
);

#endif