SwapBuffers() 개인적인 메소드

private SwapBuffers ( IntPtr dc ) : bool
dc IntPtr
리턴 bool
예제 #1
0
 public override void SwapBuffers()
 {
     if (!Functions.SwapBuffers(this.DeviceContext))
     {
         throw new GraphicsContextException(string.Format("Failed to swap buffers for context {0} current. Error: {1}", (object)this, (object)Marshal.GetLastWin32Error()));
     }
 }
예제 #2
0
 public override void SwapBuffers()
 {
     if (!Functions.SwapBuffers(Wgl.GetCurrentDC()))
     {
         throw new GraphicsContextException(String.Format(
                                                "Failed to swap buffers for context {0} current. Error: {1}", this, Marshal.GetLastWin32Error()));
     }
 }