Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey committed Jul 26, 2024
1 parent 287915c commit d96515a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/minimal_scene/EngineToQtInterface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ GLuint EngineToQtInterface::TextureId(gz::rendering::CameraPtr &_camera)

QOpenGLFunctions *glFuncs = this->dataPtr->glContext->functions();
glFuncs->glBindTexture(GL_TEXTURE_2D, textureId);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SRGB_DECODE_EXT, GL_SKIP_DECODE_EXT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SRGB_DECODE_EXT,
GL_SKIP_DECODE_EXT);
return textureId;
}
else
Expand Down

0 comments on commit d96515a

Please sign in to comment.