mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 05:37:58 -05:00
Sources: Run clang-format on everything.
This commit is contained in:
@ -14,13 +14,8 @@ class EmuWindow;
|
||||
|
||||
class RendererBase : NonCopyable {
|
||||
public:
|
||||
|
||||
/// Used to reference a framebuffer
|
||||
enum kFramebuffer {
|
||||
kFramebuffer_VirtualXFB = 0,
|
||||
kFramebuffer_EFB,
|
||||
kFramebuffer_Texture
|
||||
};
|
||||
enum kFramebuffer { kFramebuffer_VirtualXFB = 0, kFramebuffer_EFB, kFramebuffer_Texture };
|
||||
|
||||
virtual ~RendererBase() {
|
||||
}
|
||||
@ -59,8 +54,8 @@ public:
|
||||
|
||||
protected:
|
||||
std::unique_ptr<VideoCore::RasterizerInterface> rasterizer;
|
||||
f32 m_current_fps = 0.0f; ///< Current framerate, should be set by the renderer
|
||||
int m_current_frame = 0; ///< Current frame, should be set by the renderer
|
||||
f32 m_current_fps = 0.0f; ///< Current framerate, should be set by the renderer
|
||||
int m_current_frame = 0; ///< Current frame, should be set by the renderer
|
||||
|
||||
private:
|
||||
bool opengl_rasterizer_active = false;
|
||||
|
Reference in New Issue
Block a user