diff options
Diffstat (limited to 'src/video_core/renderer_base.h')
| -rw-r--r-- | src/video_core/renderer_base.h | 4 |
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 | |||
| 9 | class RendererBase : NonCopyable { | 11 | class RendererBase : NonCopyable { |
| 10 | public: | 12 | public: |
| 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 | |||
| 51 | protected: | 55 | protected: |
| 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 |