From 289dbe63cdce0994361ead10a588bded06237ef5 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 6 Jan 2008 02:30:12 +0000 Subject: [PATCH] Force DoubleBuffered attribute to false. --- Source/OpenTK/GLControl.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/OpenTK/GLControl.cs b/Source/OpenTK/GLControl.cs index 2fa04fc7..32985bc6 100644 --- a/Source/OpenTK/GLControl.cs +++ b/Source/OpenTK/GLControl.cs @@ -46,6 +46,7 @@ namespace OpenTK this.SetStyle(ControlStyles.Opaque, true); this.SetStyle(ControlStyles.UserPaint, true); this.SetStyle(ControlStyles.AllPaintingInWmPaint, true); + DoubleBuffered = false; this.display_mode = mode;