mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-14 22:15:15 +01:00
b002511df0
citra-qt: Add customizable speed limit target * Update SDL config for the new frame_limit option * Made max lag time a function of target speed percent. * Added a checkbox to enable/disable frame limiter * UI: Prevent frame_limit from under/overflowing * UI: Hide target speed percent when frame limiter is off * Disable frame limit spin box when framelimit isn't enabled
36 lines
887 B
C++
36 lines
887 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <memory>
|
|
|
|
class EmuWindow;
|
|
class RendererBase;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Video Core namespace
|
|
|
|
namespace VideoCore {
|
|
|
|
extern std::unique_ptr<RendererBase> g_renderer; ///< Renderer plugin
|
|
extern EmuWindow* g_emu_window; ///< Emu window
|
|
|
|
// TODO: Wrap these in a user settings struct along with any other graphics settings (often set from
|
|
// qt ui)
|
|
extern std::atomic<bool> g_hw_renderer_enabled;
|
|
extern std::atomic<bool> g_shader_jit_enabled;
|
|
|
|
/// Start the video core
|
|
void Start();
|
|
|
|
/// Initialize the video core
|
|
bool Init(EmuWindow* emu_window);
|
|
|
|
/// Shutdown the video core
|
|
void Shutdown();
|
|
|
|
} // namespace VideoCore
|