GLContextSettings

The GLContextSettings structure defines a way to tell OpenGL important user settings, like the desired major / minor version or the anti aliasing level.

Note: if anti aliasing is activated you will notice a drastic reduction of your framerate.

Constructors

this
this(AntiAlias antiAlias, Version vers = Version.Default, Profile profile = Profile.Compatibility)

CTor

Members

Enums

Profile
enum Profile

The profile of the OpenGL Context

Version
enum Version

The supported OpenGL Versions

Variables

antiAlias
AntiAlias antiAlias;

Anti aliasing level. Default is AntiAlias.None

profile
Profile profile;

The OpenGL Context profile. Default is Profile.Compatibility

vers
Version vers;

The OpenGL Version. Default is Version.Default

Meta

Authors

Randy Schuett (rswhite4@googlemail.com)