Explorar el Código

renderer_opengl: Add framebuffer_transform_flags member variable.

bunnei hace 8 años
padre
commit
cdf541fb5b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/video_core/renderer_opengl/renderer_opengl.h

+ 2 - 2
src/video_core/renderer_opengl/renderer_opengl.h

@@ -88,6 +88,6 @@ private:
     GLuint attrib_position;
     GLuint attrib_tex_coord;
 
-    /// Flips the framebuffer vertically when true
-    bool framebuffer_flip_vertical;
+    /// Used for transforming the framebuffer orientation
+    Tegra::FramebufferConfig::TransformFlags framebuffer_transform_flags;
 };