diff options
| author | 2018-04-24 00:19:36 -0400 | |
|---|---|---|
| committer | 2018-04-24 22:31:45 -0400 | |
| commit | 4415e00181f71b35eea779157976773d9bccf638 (patch) | |
| tree | 604e0f8de1fe238ac74eee4fd3d5eabdb59e7bc1 /src/video_core/textures/decoders.cpp | |
| parent | memory_manager: Add implement CpuToGpuAddress. (diff) | |
| download | yuzu-4415e00181f71b35eea779157976773d9bccf638.tar.gz yuzu-4415e00181f71b35eea779157976773d9bccf638.tar.xz yuzu-4415e00181f71b35eea779157976773d9bccf638.zip | |
gl_rasterizer_cache: Update to be based on GPU addresses, not CPU addresses.
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
| -rw-r--r-- | src/video_core/textures/decoders.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index e0509f0ce..9c3ae875c 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #include <cstring> | 5 | #include <cstring> |
| 6 | #include "common/assert.h" | 6 | #include "common/assert.h" |
| 7 | #include "core/memory.h" | ||
| 7 | #include "video_core/textures/decoders.h" | 8 | #include "video_core/textures/decoders.h" |
| 8 | #include "video_core/textures/texture.h" | 9 | #include "video_core/textures/texture.h" |
| 9 | 10 | ||