aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/src/renderer_opengl/renderer_opengl.h
blob: 86dc7b70ee12fd4ab591a6ed918c1f899655aa5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#pragma once

#include <GL/glew.h>

#include "common.h"
#include "emu_window.h"

#include "renderer_base.h"


class RendererOpenGL : virtual public RendererBase {
public:

    static const int kMaxFramebuffers = 2;  ///< Maximum number of framebuffers

    RendererOpenGL();
    ~RendererOpenGL();

    /// Swap buffers (render frame)
    void SwapBuffers();

    /** 
     * Renders external framebuffer (XFB)
     * @param src_rect Source rectangle in XFB to copy
     * @param dst_rect Destination rectangle in output framebuffer to copy to
     */
    void RenderXFB(const Rect& src_rect, const Rect& dst_rect);

    /** 
     * Set the emulator window to use for renderer
     * @param window EmuWindow handle to emulator window to use for rendering
     */
    void SetWindow(EmuWindow* window);

    /// Initialize the renderer
    void Init();

    /// Shutdown the renderer
    void ShutDown();

private:

    /// Initialize the FBO
    void InitFramebuffer();

    // Blit the FBO to the OpenGL default framebuffer
    void RenderFramebuffer();

    /// Updates the framerate
    void UpdateFramerate();

    /**
     * Helper function to flip framebuffer from left-to-right to top-to-bottom
     * @param addr Address of framebuffer in RAM
     * @param out Pointer to output buffer with flipped framebuffer
     * @todo Early on hack... I'd like to find a more efficient way of doing this /bunnei
     */
    void RendererOpenGL::FlipFramebuffer(u32 addr, u8* out);


    EmuWindow*  m_render_window;                    ///< Handle to render window
    u32         m_last_mode;                        ///< Last render mode

    int m_resolution_width;                         ///< Current resolution width
    int m_resolution_height;                        ///< Current resolution height

    // Framebuffers
    // ------------

    GLuint m_fbo[kMaxFramebuffers];                 ///< Framebuffer objects
    GLuint m_fbo_rbo[kMaxFramebuffers];             ///< Render buffer objects
    GLuint m_fbo_depth_buffers[kMaxFramebuffers];   ///< Depth buffers objects

    GLuint m_xfb_texture_top;                       ///< GL handle to top framebuffer texture
    GLuint m_xfb_texture_bottom;                    ///< GL handle to bottom framebuffer texture
           
    GLuint m_xfb_top;                               ///< GL handle to top framebuffer
    GLuint m_xfb_bottom;                            ///< GL handle to bottom framebuffer

    // "Flipped" framebuffers translate scanlines from native 3DS left-to-right to top-to-bottom
    // as OpenGL expects them in a texture. There probably is a more efficient way of doing this:

    u8 m_xfb_top_flipped[VideoCore::kScreenTopWidth * VideoCore::kScreenTopWidth * 4]; 
    u8 m_xfb_bottom_flipped[VideoCore::kScreenTopWidth * VideoCore::kScreenTopWidth * 4];   

    DISALLOW_COPY_AND_ASSIGN(RendererOpenGL);
};