From 1d936eae7b99f4f14cdac1932f52ec07cbb36ddb Mon Sep 17 00:00:00 2001 From: Anten Skrabec Date: Tue, 17 Aug 2021 23:23:32 -0600 Subject: [PATCH] add comment about power of two setting for msaa samples --- pixelgl/window.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixelgl/window.go b/pixelgl/window.go index d199f49..dc095b3 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. 0 to disable. + //SamplesMSAA specifies the level of MSAA to be used. Must be a power of 2. 0 to disable. SamplesMSAA int }