1 /** \file
2  * \brief NativeWindow driver
3  *
4  * See Copyright Notice in cd.h
5  */
6 
7 module cd.native;
8 
9 import cd.cd: cdContext;
10 
11 extern (C) @safe nothrow:
12 
13 cdContext* cdContextNativeWindow();
14 
15 alias CD_NATIVEWINDOW = cdContextNativeWindow;
16 
17 void cdGetScreenSize(int *width, int *height, double *width_mm, double *height_mm);
18 int cdGetScreenColorPlanes();
19