Update window.go

This commit is contained in:
Allen Ray 2021-08-31 08:35:57 -04:00 committed by GitHub
parent 160e665d51
commit f079cc25fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ type WindowConfig struct {
// You can make the window visible later using Window.Show(). // You can make the window visible later using Window.Show().
Invisible bool 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 SamplesMSAA int
} }