diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-07 04:57:04 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-07 04:57:04 +0200 |
commit | 506e6049d3e15410b0bbf3df32477c7d27d55bab (patch) | |
tree | b003c09467f59ed7b1769ce7066991fb17b67760 | |
parent | removed log message from hw_lcd (diff) | |
download | yuzu-506e6049d3e15410b0bbf3df32477c7d27d55bab.tar yuzu-506e6049d3e15410b0bbf3df32477c7d27d55bab.tar.gz yuzu-506e6049d3e15410b0bbf3df32477c7d27d55bab.tar.bz2 yuzu-506e6049d3e15410b0bbf3df32477c7d27d55bab.tar.lz yuzu-506e6049d3e15410b0bbf3df32477c7d27d55bab.tar.xz yuzu-506e6049d3e15410b0bbf3df32477c7d27d55bab.tar.zst yuzu-506e6049d3e15410b0bbf3df32477c7d27d55bab.zip |
-rw-r--r-- | src/video_core/src/renderer_opengl/renderer_opengl.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/video_core/src/renderer_opengl/renderer_opengl.h b/src/video_core/src/renderer_opengl/renderer_opengl.h index 0c41977e4..f9fb89d50 100644 --- a/src/video_core/src/renderer_opengl/renderer_opengl.h +++ b/src/video_core/src/renderer_opengl/renderer_opengl.h @@ -128,11 +128,20 @@ private: int resolution_width_; int resolution_height_; - // Framebuffer object(s) - // --------------------- + // Render buffers + // -------------- GLuint fbo_rbo_[kMaxFramebuffers]; ///< Render buffer objects GLuint fbo_depth_buffers_[kMaxFramebuffers]; ///< Depth buffers objects + // External framebuffers + // --------------------- + + GLuint xfb_texture_top_; ///< GL handle to top framebuffer texture + GLuint xfb_texture_bottom_; ///< GL handle to bottom framebuffer texture + + GLuint xfb_top_; + GLuint xfb_bottom_; + DISALLOW_COPY_AND_ASSIGN(RendererOpenGL); };
\ No newline at end of file |