summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-03-22 21:17:10 +0100
committerSubv <subv2112@gmail.com>2018-03-24 17:30:56 +0100
commit1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15 (patch)
treedc74d1d4ef4ce25613f2b399ad286911d871457e /src/video_core/engines
parentGPU: Preliminary work for texture decoding. (diff)
downloadyuzu-1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15.tar
yuzu-1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15.tar.gz
yuzu-1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15.tar.bz2
yuzu-1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15.tar.lz
yuzu-1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15.tar.xz
yuzu-1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15.tar.zst
yuzu-1b8d798835c2d39c2867f53d8dcacdc7d0ba0d15.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index ca1b150a7..d1edfe09a 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -196,7 +196,7 @@ void Maxwell3D::DrawArrays() {
auto format = tic_entry.format.Value();
- auto texture = Texture::DecodeTexture(
+ auto texture = Texture::UnswizzleTexture(
memory_manager.PhysicalToVirtualAddress(tic_entry.Address()),
tic_entry.format.Value(), tic_entry.Width(), tic_entry.Height());