summaryrefslogtreecommitdiffstats
path: root/src/video_core/debug_utils/debug_utils.h
diff options
context:
space:
mode:
authorTony Wasserka <NeoBrainX@gmail.com>2014-12-06 21:52:21 +0100
committerTony Wasserka <NeoBrainX@gmail.com>2014-12-20 18:05:53 +0100
commit3df88d59b0ba43f1c3360cfdaaccd461cacff72c (patch)
treed0377ec9b94ba6bb5f7c02b539eeeba00d7887d5 /src/video_core/debug_utils/debug_utils.h
parentPica: Implement texture wrapping. (diff)
downloadyuzu-3df88d59b0ba43f1c3360cfdaaccd461cacff72c.tar
yuzu-3df88d59b0ba43f1c3360cfdaaccd461cacff72c.tar.gz
yuzu-3df88d59b0ba43f1c3360cfdaaccd461cacff72c.tar.bz2
yuzu-3df88d59b0ba43f1c3360cfdaaccd461cacff72c.tar.lz
yuzu-3df88d59b0ba43f1c3360cfdaaccd461cacff72c.tar.xz
yuzu-3df88d59b0ba43f1c3360cfdaaccd461cacff72c.tar.zst
yuzu-3df88d59b0ba43f1c3360cfdaaccd461cacff72c.zip
Diffstat (limited to 'src/video_core/debug_utils/debug_utils.h')
-rw-r--r--src/video_core/debug_utils/debug_utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index 51f14f12f..f950356f3 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -202,7 +202,8 @@ struct TextureInfo {
const Pica::Regs::TextureFormat& format);
};
-const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const TextureInfo& info);
+const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const TextureInfo& info,
+ bool disable_alpha = false);
void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data);
void DumpTevStageConfig(const std::array<Pica::Regs::TevStageConfig,6>& stages);