summaryrefslogtreecommitdiffstats
path: root/src/video_core/debug_utils/debug_utils.h
diff options
context:
space:
mode:
authorJannik Vogel <email@jannikvogel.de>2016-05-17 11:13:25 +0200
committerJannik Vogel <email@jannikvogel.de>2016-05-21 03:11:27 +0200
commitd77279a41538eabee0c6dc3fa93297f209d6ab03 (patch)
treeb098cf6dbc1db86e2738ef0ec99e455d9e23cd2f /src/video_core/debug_utils/debug_utils.h
parentExtend Tev stage dumper (diff)
downloadyuzu-d77279a41538eabee0c6dc3fa93297f209d6ab03.tar
yuzu-d77279a41538eabee0c6dc3fa93297f209d6ab03.tar.gz
yuzu-d77279a41538eabee0c6dc3fa93297f209d6ab03.tar.bz2
yuzu-d77279a41538eabee0c6dc3fa93297f209d6ab03.tar.lz
yuzu-d77279a41538eabee0c6dc3fa93297f209d6ab03.tar.xz
yuzu-d77279a41538eabee0c6dc3fa93297f209d6ab03.tar.zst
yuzu-d77279a41538eabee0c6dc3fa93297f209d6ab03.zip
Diffstat (limited to 'src/video_core/debug_utils/debug_utils.h')
-rw-r--r--src/video_core/debug_utils/debug_utils.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index f628292a4..92e9734ae 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -224,7 +224,11 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int s, int t, const Texture
void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data);
-void DumpTevStageConfig(const std::array<Pica::Regs::TevStageConfig,6>& stages);
+std::string GetTevStageConfigColorCombinerString(const Pica::Regs::TevStageConfig& tev_stage);
+std::string GetTevStageConfigAlphaCombinerString(const Pica::Regs::TevStageConfig& tev_stage);
+
+/// Dumps the Tev stage config to log at trace level
+void DumpTevStageConfig(const std::array<Pica::Regs::TevStageConfig, 6>& stages);
/**
* Used in the vertex loader to merge access records. TODO: Investigate if actually useful.