OpenGL renderer

This commit is contained in:
tfarley 2015-05-18 21:21:33 -07:00
parent 6d995b1ff6
commit 05dc633a8c
28 changed files with 2245 additions and 47 deletions

View file

@ -6,6 +6,8 @@
#include "common/common_types.h"
#include "video_core/hwrasterizer_base.h"
class RendererBase : NonCopyable {
public:
@ -48,6 +50,8 @@ public:
return m_current_frame;
}
std::unique_ptr<HWRasterizer> hw_rasterizer;
protected:
f32 m_current_fps; ///< Current framerate, should be set by the renderer
int m_current_frame; ///< Current frame, should be set by the renderer