1 /** \file
2 * \brief OpenGL driver
3 *
4 * See Copyright Notice in cd.h
5 */
6 
7 module cd.gl;
8 
9 import cd.cd: cdContext;
10 
11 extern (C) @safe nothrow:
12 
13 cdContext* cdContextGL();
14 
15 alias CD_GL = cdContextGL;
16