summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.h
diff options
context:
space:
mode:
authorGravatar archshift2014-10-25 12:54:44 -0700
committerGravatar archshift2014-10-27 18:35:21 -0700
commit0783498f570e7d5c00174cd10a3c1ff105d1eae6 (patch)
tree10f64506a8f5111f56c4db17c95f6aba19baf0b9 /src/core/hw/gpu.h
parentMerge pull request #150 from lioncash/typo (diff)
downloadyuzu-0783498f570e7d5c00174cd10a3c1ff105d1eae6.tar.gz
yuzu-0783498f570e7d5c00174cd10a3c1ff105d1eae6.tar.xz
yuzu-0783498f570e7d5c00174cd10a3c1ff105d1eae6.zip
Use configuration files to enable or disable the new dyncom interpreter.
Diffstat (limited to 'src/core/hw/gpu.h')
-rw-r--r--src/core/hw/gpu.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h
index 92097d182..3fa7b9ccf 100644
--- a/src/core/hw/gpu.h
+++ b/src/core/hw/gpu.h
@@ -11,9 +11,6 @@
11 11
12namespace GPU { 12namespace GPU {
13 13
14static const u32 kFrameCycles = 268123480 / 60; ///< 268MHz / 60 frames per second
15static const u32 kFrameTicks = kFrameCycles / 3; ///< Approximate number of instructions/frame
16
17// Returns index corresponding to the Regs member labeled by field_name 14// Returns index corresponding to the Regs member labeled by field_name
18// TODO: Due to Visual studio bug 209229, offsetof does not return constant expressions 15// TODO: Due to Visual studio bug 209229, offsetof does not return constant expressions
19// when used with array elements (e.g. GPU_REG_INDEX(memory_fill_config[0])). 16// when used with array elements (e.g. GPU_REG_INDEX(memory_fill_config[0])).