From f079cc25fe047a1b91e6d336a32022cb08740125 Mon Sep 17 00:00:00 2001 From: Allen Ray Date: Tue, 31 Aug 2021 08:35:57 -0400 Subject: [PATCH] Update window.go --- pixelgl/window.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixelgl/window.go b/pixelgl/window.go index dc095b3..060a5cc 100644 --- a/pixelgl/window.go +++ b/pixelgl/window.go @@ -78,7 +78,7 @@ type WindowConfig struct { // You can make the window visible later using Window.Show(). Invisible bool - //SamplesMSAA specifies the level of MSAA to be used. Must be a power of 2. 0 to disable. + //SamplesMSAA specifies the level of MSAA to be used. Must be one of 0, 2, 4, 8, 16. 0 to disable. SamplesMSAA int }