Refactor WantsOpenGl struct

This commit is contained in:
Elias Batek 2023-12-27 17:07:58 +01:00
parent 604d806c1e
commit fea3ea1ab0
1 changed files with 12 additions and 5 deletions

View File

@ -435,9 +435,16 @@ struct PresenterObjects {
/// ///
struct WantsOpenGl { struct WantsOpenGl {
bool wanted; /// Is OpenGL wanted? ubyte vMaj; /// Major version
ubyte vMaj; /// major version ubyte vMin; /// Minor version
ubyte vMin; /// minor version bool compat; /// Compatibility profile? → true = Compatibility Profile; false = Core Profile
@safe pure nothrow @nogc:
/// Is OpenGL wanted?
bool wanted() const {
return vMaj > 0;
}
} }
/// ///
@ -507,7 +514,7 @@ final class OpenGl3PixmapRenderer : PixmapRenderer {
} }
public WantsOpenGl wantsOpenGl() @safe pure nothrow @nogc { public WantsOpenGl wantsOpenGl() @safe pure nothrow @nogc {
return WantsOpenGl(true, 3, 0); return WantsOpenGl(3, 0, false);
} }
// TODO: make this ctor? // TODO: make this ctor?
@ -779,7 +786,7 @@ final class PixmapPresenter {
const openGl = _renderer.wantsOpenGl; const openGl = _renderer.wantsOpenGl;
if (openGl.wanted) { if (openGl.wanted) {
setOpenGLContextVersion(openGl.vMaj, openGl.vMin); setOpenGLContextVersion(openGl.vMaj, openGl.vMin);
openGLContextCompatible = false; openGLContextCompatible = openGl.compat;
openGlOptions = OpenGlOptions.yes; openGlOptions = OpenGlOptions.yes;
} }