Explorar o código

gl_state: Minor style changes

ReinUsesLisp %!s(int64=6) %!d(string=hai) anos
pai
achega
c7698d0bc8
Modificáronse 1 ficheiros con 5 adicións e 3 borrados
  1. 5 3
      src/video_core/renderer_opengl/gl_state.cpp

+ 5 - 3
src/video_core/renderer_opengl/gl_state.cpp

@@ -69,16 +69,18 @@ void Enable(GLenum cap, GLuint index, bool enable) {
 }
 
 void Enable(GLenum cap, bool& current_value, bool new_value) {
-    if (UpdateValue(current_value, new_value))
+    if (UpdateValue(current_value, new_value)) {
         Enable(cap, new_value);
+    }
 }
 
 void Enable(GLenum cap, GLuint index, bool& current_value, bool new_value) {
-    if (UpdateValue(current_value, new_value))
+    if (UpdateValue(current_value, new_value)) {
         Enable(cap, index, new_value);
+    }
 }
 
-} // namespace
+} // Anonymous namespace
 
 OpenGLState::OpenGLState() = default;