Skip to content

Commit

Permalink
hands
Browse files Browse the repository at this point in the history
  • Loading branch information
grorp committed Nov 11, 2024
1 parent b5435e4 commit b261a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irr/src/COpenGLDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2093,7 +2093,7 @@ void COpenGLDriver::setBasicRenderStates(const SMaterial &material, const SMater

// Enable MSAA even if it's not enabled in the OpenGL context, we might
// be rendering to an FBO with multisampling.
if ((material.AntiAliasing & (EAAM_SIMPLE | EAAM_QUALITY))) {
if (material.AntiAliasing & (EAAM_SIMPLE | EAAM_QUALITY)) {
glEnable(GL_MULTISAMPLE_ARB);
#ifdef GL_NV_multisample_filter_hint
if (FeatureAvailable[IRR_NV_multisample_filter_hint]) {
Expand Down

0 comments on commit b261a4b

Please sign in to comment.