summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu_asynch.cpp
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-04-09 22:59:21 +0200
committerGitHub <noreply@github.com>2020-04-09 22:59:21 +0200
commit36f607217fa9172d2e1b76e327fdb03b0498ae4d (patch)
tree523309af11b2e7f47f3f6060fad1d86e9d446206 /src/video_core/gpu_asynch.cpp
parentMerge pull request #3601 from ReinUsesLisp/some-shader-encodings (diff)
parentVkRasterizer: Eliminate Legacy code. (diff)
downloadyuzu-36f607217fa9172d2e1b76e327fdb03b0498ae4d.tar
yuzu-36f607217fa9172d2e1b76e327fdb03b0498ae4d.tar.gz
yuzu-36f607217fa9172d2e1b76e327fdb03b0498ae4d.tar.bz2
yuzu-36f607217fa9172d2e1b76e327fdb03b0498ae4d.tar.lz
yuzu-36f607217fa9172d2e1b76e327fdb03b0498ae4d.tar.xz
yuzu-36f607217fa9172d2e1b76e327fdb03b0498ae4d.tar.zst
yuzu-36f607217fa9172d2e1b76e327fdb03b0498ae4d.zip
Diffstat (limited to 'src/video_core/gpu_asynch.cpp')
-rw-r--r--src/video_core/gpu_asynch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/gpu_asynch.cpp b/src/video_core/gpu_asynch.cpp
index 925be8d7b..cc434faf7 100644
--- a/src/video_core/gpu_asynch.cpp
+++ b/src/video_core/gpu_asynch.cpp
@@ -30,15 +30,15 @@ void GPUAsynch::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {
gpu_thread.SwapBuffers(framebuffer);
}
-void GPUAsynch::FlushRegion(CacheAddr addr, u64 size) {
+void GPUAsynch::FlushRegion(VAddr addr, u64 size) {
gpu_thread.FlushRegion(addr, size);
}
-void GPUAsynch::InvalidateRegion(CacheAddr addr, u64 size) {
+void GPUAsynch::InvalidateRegion(VAddr addr, u64 size) {
gpu_thread.InvalidateRegion(addr, size);
}
-void GPUAsynch::FlushAndInvalidateRegion(CacheAddr addr, u64 size) {
+void GPUAsynch::FlushAndInvalidateRegion(VAddr addr, u64 size) {
gpu_thread.FlushAndInvalidateRegion(addr, size);
}