summaryrefslogtreecommitdiffstats
path: root/src/video_core/debug_utils/debug_utils.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-05 23:11:23 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-04 21:31:40 +0100
commita1c9ac7845395c250a78fc8df93a9ffed29f3d5b (patch)
tree7e3768df24f82e9e732302318326113419309d33 /src/video_core/debug_utils/debug_utils.h
parentMerge pull request #2496 from mailwl/cfg-mem (diff)
downloadyuzu-a1c9ac7845395c250a78fc8df93a9ffed29f3d5b.tar
yuzu-a1c9ac7845395c250a78fc8df93a9ffed29f3d5b.tar.gz
yuzu-a1c9ac7845395c250a78fc8df93a9ffed29f3d5b.tar.bz2
yuzu-a1c9ac7845395c250a78fc8df93a9ffed29f3d5b.tar.lz
yuzu-a1c9ac7845395c250a78fc8df93a9ffed29f3d5b.tar.xz
yuzu-a1c9ac7845395c250a78fc8df93a9ffed29f3d5b.tar.zst
yuzu-a1c9ac7845395c250a78fc8df93a9ffed29f3d5b.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/debug_utils/debug_utils.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index 46ea8d9c7..938a2e1b5 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -205,31 +205,6 @@ inline bool IsPicaTracing() {
void OnPicaRegWrite(PicaTrace::Write write);
std::unique_ptr<PicaTrace> FinishPicaTracing();
-struct TextureInfo {
- PAddr physical_address;
- int width;
- int height;
- int stride;
- Pica::Regs::TextureFormat format;
-
- static TextureInfo FromPicaRegister(const Pica::Regs::TextureConfig& config,
- const Pica::Regs::TextureFormat& format);
-};
-
-/**
- * Lookup texel located at the given coordinates and return an RGBA vector of its color.
- * @param source Source pointer to read data from
- * @param s,t Texture coordinates to read from
- * @param info TextureInfo object describing the texture setup
- * @param disable_alpha This is used for debug widgets which use this method to display textures
- * without providing a good way to visualize alpha by themselves. If true, this will return 255 for
- * the alpha component, and either drop the information entirely or store it in an "unused" color
- * channel.
- * @todo Eventually we should get rid of the disable_alpha parameter.
- */
-const Math::Vec4<u8> LookupTexture(const u8* source, int s, int t, const TextureInfo& info,
- bool disable_alpha = false);
-
void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data);
std::string GetTevStageConfigColorCombinerString(const Pica::Regs::TevStageConfig& tev_stage);