コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: smack0007/GLDotNet
 private void GLControl1_Render(object sender, GLContextEventArgs e)
 {
     e.Context.Clear(ClearBufferMask.ColorBufferBit);
 }
コード例 #2
0
ファイル: GLControl.cs プロジェクト: smack0007/GLDotNet
 protected virtual void OnRender(GLContextEventArgs e)
 {
     if (this.Render != null)
         this.Render(this, e);
 }
コード例 #3
0
ファイル: MainWindow.xaml.cs プロジェクト: smack0007/GLDotNet
 private void GLControl1_GLContextCreated(object sender, GLContextEventArgs e)
 {
     e.Context.ClearColor(1, 0, 0, 1);
 }
コード例 #4
0
ファイル: GLControl.cs プロジェクト: smack0007/GLDotNet
 protected virtual void OnContextCreated(GLContextEventArgs e)
 {
     if (this.GLContextCreated != null)
         this.GLContextCreated(this, e);
 }