1 module des.gl.general; 2 3 public 4 { 5 import std.exception; 6 import std..string; 7 import std.conv : to; 8 9 import derelict.opengl3.gl3; 10 11 import des.math.linear; 12 13 import des.util.arch; 14 import des.util.logsys; 15 import des.util.data.type; 16 import des.util.helpers : packBitMask; 17 import des.util.stdext..string; 18 19 import des.gl.type; 20 import des.gl.error; 21 import des.gl.object; 22 } 23 24 /// 25 class DesGLException : Exception 26 { 27 /// 28 this( string msg, string file=__FILE__, size_t line=__LINE__ ) pure nothrow @safe 29 { super( msg, file, line ); } 30 }