summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-12-28 22:39:17 -0500
committerGravatar bunnei2014-12-28 22:39:17 -0500
commit487a80f9f70f5972aaf53fd855e17c07deb4819f (patch)
tree2ce60ca2c34aca3e4c19395562df0dbbeb7c19f6 /src/core/hw/gpu.h
parentMerge pull request #355 from lioncash/simp (diff)
parentGPU: Implement frameskip and remove forced framebuffer swap hack. (diff)
downloadyuzu-487a80f9f70f5972aaf53fd855e17c07deb4819f.tar.gz
yuzu-487a80f9f70f5972aaf53fd855e17c07deb4819f.tar.xz
yuzu-487a80f9f70f5972aaf53fd855e17c07deb4819f.zip
Merge pull request #347 from bunnei/frameskip
Frameskip
Diffstat (limited to 'src/core/hw/gpu.h')
-rw-r--r--src/core/hw/gpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h
index 68f11bfcb..292f496c1 100644
--- a/src/core/hw/gpu.h
+++ b/src/core/hw/gpu.h
@@ -241,6 +241,7 @@ ASSERT_REG_POSITION(command_processor_config, 0x00638);
241static_assert(sizeof(Regs) == 0x1000 * sizeof(u32), "Invalid total size of register set"); 241static_assert(sizeof(Regs) == 0x1000 * sizeof(u32), "Invalid total size of register set");
242 242
243extern Regs g_regs; 243extern Regs g_regs;
244extern bool g_skip_frame;
244 245
245template <typename T> 246template <typename T>
246void Read(T &var, const u32 addr); 247void Read(T &var, const u32 addr);