Disable GL_FRAMEBUFFER_SRGB

This commit is contained in:
Luke Street 2022-05-03 00:02:50 -04:00
parent 64ffca228b
commit 3f4a7546c2
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ namespace dawn::native::opengl {
// These are not necessary on GLES. The functionality is enabled by default, and // These are not necessary on GLES. The functionality is enabled by default, and
// works by specifying sample counts and SRGB textures, respectively. // works by specifying sample counts and SRGB textures, respectively.
mFunctions.Enable(GL_MULTISAMPLE); mFunctions.Enable(GL_MULTISAMPLE);
mFunctions.Enable(GL_FRAMEBUFFER_SRGB); // mFunctions.Enable(GL_FRAMEBUFFER_SRGB);
} }
mFunctions.Enable(GL_SAMPLE_MASK); mFunctions.Enable(GL_SAMPLE_MASK);