diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-15 05:40:53 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-15 05:40:53 +0200 |
commit | bb689338943791c735c7c6adb186256457e064b4 (patch) | |
tree | a04ba64d18dd163709b1cb4b4212afaca6c091a6 /src/video_core/rasterizer.cpp | |
parent | Merge pull request #769 from lioncash/cond (diff) | |
parent | Memory: Use a table based lookup scheme to read from memory regions (diff) | |
download | yuzu-bb689338943791c735c7c6adb186256457e064b4.tar yuzu-bb689338943791c735c7c6adb186256457e064b4.tar.gz yuzu-bb689338943791c735c7c6adb186256457e064b4.tar.bz2 yuzu-bb689338943791c735c7c6adb186256457e064b4.tar.lz yuzu-bb689338943791c735c7c6adb186256457e064b4.tar.xz yuzu-bb689338943791c735c7c6adb186256457e064b4.tar.zst yuzu-bb689338943791c735c7c6adb186256457e064b4.zip |
Diffstat (limited to 'src/video_core/rasterizer.cpp')
-rw-r--r-- | src/video_core/rasterizer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index 02a08b20e..59eff48f9 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp @@ -9,6 +9,8 @@ #include "common/profiler.h" #include "core/hw/gpu.h" +#include "core/memory.h" + #include "debug_utils/debug_utils.h" #include "math.h" #include "color.h" |