summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Fifo.cpp
diff options
context:
space:
mode:
authoranthony <Anthony>2016-10-07 19:55:47 -0700
committerHelios747 <aserna3@gmail.com>2016-10-08 11:49:51 -0500
commitb427ead0cc46ae6e35568a85228f6261204a197f (patch)
treebd73787541b9bf9e9cfcbbac03cd39ed22816365 /Source/Core/VideoCommon/Fifo.cpp
parent4ba1100f3191c80e58f89c78d1e8965e126da8f3 (diff)
Remove Frameskip
Diffstat (limited to 'Source/Core/VideoCommon/Fifo.cpp')
-rw-r--r--Source/Core/VideoCommon/Fifo.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp
index 4ca76cae71..d3f9703823 100644
--- a/Source/Core/VideoCommon/Fifo.cpp
+++ b/Source/Core/VideoCommon/Fifo.cpp
@@ -34,8 +34,6 @@ namespace Fifo
static constexpr u32 FIFO_SIZE = 2 * 1024 * 1024;
static constexpr int GPU_TIME_SLOT_SIZE = 1000;
-static bool s_skip_current_frame = false;
-
static Common::BlockingLoop s_gpu_mainloop;
static Common::Flag s_emu_running_state;
@@ -86,7 +84,6 @@ void DoState(PointerWrap& p)
s_video_buffer_seen_ptr = s_video_buffer_pp_read_ptr = s_video_buffer_read_ptr;
}
- p.Do(s_skip_current_frame);
p.Do(s_sync_ticks);
}
@@ -130,16 +127,6 @@ void Shutdown()
s_fifo_aux_read_ptr = nullptr;
}
-void SetRendering(bool enabled)
-{
- s_skip_current_frame = !enabled;
-}
-
-bool WillSkipCurrentFrame()
-{
- return s_skip_current_frame;
-}
-
// May be executed from any thread, even the graphics thread.
// Created to allow for self shutdown.
void ExitGpuLoop()