summaryrefslogtreecommitdiff
path: root/src/video_core/renderer_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/renderer_base.h')
-rw-r--r--src/video_core/renderer_base.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/renderer_base.h b/src/video_core/renderer_base.h
index b62409538..5757ac75d 100644
--- a/src/video_core/renderer_base.h
+++ b/src/video_core/renderer_base.h
@@ -6,6 +6,8 @@
6 6
7#include "common/common_types.h" 7#include "common/common_types.h"
8 8
9#include "video_core/hwrasterizer_base.h"
10
9class RendererBase : NonCopyable { 11class RendererBase : NonCopyable {
10public: 12public:
11 13
@@ -48,6 +50,8 @@ public:
48 return m_current_frame; 50 return m_current_frame;
49 } 51 }
50 52
53 std::unique_ptr<HWRasterizer> hw_rasterizer;
54
51protected: 55protected:
52 f32 m_current_fps; ///< Current framerate, should be set by the renderer 56 f32 m_current_fps; ///< Current framerate, should be set by the renderer
53 int m_current_frame; ///< Current frame, should be set by the renderer 57 int m_current_frame; ///< Current frame, should be set by the renderer