Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1.         public void Draw()
  2.         {
  3.             GL.ClearColor(Color.CornflowerBlue);
  4.             GL.Clear(ClearBufferMask.ColorBufferBit);
  5.  
  6.             GL.DrawArrays(BeginMode.LineLoop, 0, 2);
  7.  
  8.             _window.Sync();
  9.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement