X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fglcontext.cpp;h=a66ca307b726a59a7ca1a025137b377fc401bd7c;hb=a6eecc5117d91534aaf13e93baf64855f4b963c0;hp=ec073cb79c2c9928fc6dece00604807f2aa540dc;hpb=be455be47a214f8fba1224ef1fb4158a073bc4e3;p=libs%2Fgui.git diff --git a/source/graphics/glcontext.cpp b/source/graphics/glcontext.cpp index ec073cb..a66ca30 100644 --- a/source/graphics/glcontext.cpp +++ b/source/graphics/glcontext.cpp @@ -1,6 +1,6 @@ +#include "glcontext.h" #include #include -#include "glcontext.h" #include "window.h" using namespace std; @@ -8,18 +8,6 @@ using namespace std; namespace Msp { namespace Graphics { -GLOptions::GLOptions(): - alpha(false), - stencil(false), - doublebuffer(true), - multisample(0), - forward_compatible(false), - core_profile(false), - gl_version_major(DEFAULT_VERSION), - gl_version_minor(DEFAULT_VERSION) -{ } - - unsupported_gl_mode::unsupported_gl_mode(const GLOptions &opts): runtime_error(format("{ .alpha=%s, .stencil=%s, .doublebuffer=%s, .multisample=%d, .forward_compatible=%s, .core_profile=%s, .gl_version=%s }", opts.alpha, opts.stencil, opts.doublebuffer, opts.multisample, opts.forward_compatible, opts.core_profile, format_version(opts)))