-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Milestone
Description
For example,
match type {
case TextureType monochrome =>
this internalFormat = GL_R8
this format = GL_RED
this _bytesPerPixel = 1
case TextureType rgba =>works just fine, so magic should warn about unnecessary brackets in
match type {
case TextureType monochrome => {
this internalFormat = GL_R8
this format = GL_RED
this _bytesPerPixel = 1
}
case TextureType rgba =>and so on because brackets are ugly.