Example #1
0
 public Boolean IsEnabled(GLOption cap)
 {
     return gl.glIsEnabled((int)cap);
 }
Example #2
0
 public GLHintedFeature(GraphicsInterface gi, GLOption aFeature, HintTarget aTarget)
     : base(gi, aFeature)
 {
     fHintMode = HintMode.DontCare;
     fHintTarget = aTarget;
 }
Example #3
0
 internal void Disable(GLOption cap)
 {
     gl.glDisable((int)cap);
     CheckException();
 }
Example #4
0
 public static void Disable(GLOption cap)
 {
     gl.glDisable((int)cap);
 }
Example #5
0
 public static void Enable(GLOption cap)
 {
     gl.glEnable((int)cap);
 }
Example #6
0
 public GLFeature(GraphicsInterface gi, GLOption aFeature)
     :base(gi)
 {
     fFeature = aFeature;
     fIsEnabled = true;
 }