diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-26 11:55:47 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-26 11:55:47 +0200 |
commit | 13347997ba59aa578d61d5d1ac723ad00953bd96 (patch) | |
tree | a84e55883de37980072ce427ed1ced68fe80036b /src/video_core/debug_utils | |
parent | Merge pull request #990 from lioncash/arm (diff) | |
download | yuzu-13347997ba59aa578d61d5d1ac723ad00953bd96.tar yuzu-13347997ba59aa578d61d5d1ac723ad00953bd96.tar.gz yuzu-13347997ba59aa578d61d5d1ac723ad00953bd96.tar.bz2 yuzu-13347997ba59aa578d61d5d1ac723ad00953bd96.tar.lz yuzu-13347997ba59aa578d61d5d1ac723ad00953bd96.tar.xz yuzu-13347997ba59aa578d61d5d1ac723ad00953bd96.tar.zst yuzu-13347997ba59aa578d61d5d1ac723ad00953bd96.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 12 | ||||
-rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 5 |
2 files changed, 5 insertions, 12 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index c3f8321c6..e9a858411 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -90,10 +90,6 @@ void GeometryDumper::AddTriangle(Vertex& v0, Vertex& v1, Vertex& v2) { } void GeometryDumper::Dump() { - // NOTE: Permanently enabling this just trashes the hard disk for no reason. - // Hence, this is currently disabled. - return; - static int index = 0; std::string filename = std::string("geometry_dump") + std::to_string(++index) + ".obj"; @@ -116,10 +112,6 @@ void GeometryDumper::Dump() { void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data, u32 swizzle_size, u32 main_offset, const Regs::VSOutputAttributes* output_attributes) { - // NOTE: Permanently enabling this just trashes hard disks for no reason. - // Hence, this is currently disabled. - return; - struct StuffToWrite { u8* pointer; u32 size; @@ -565,10 +557,6 @@ TextureInfo TextureInfo::FromPicaRegister(const Regs::TextureConfig& config, } void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) { - // NOTE: Permanently enabling this just trashes hard disks for no reason. - // Hence, this is currently disabled. - return; - #ifndef HAVE_PNG return; #else diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h index 3f109dcb7..81eea30a9 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h @@ -157,6 +157,11 @@ extern std::shared_ptr<DebugContext> g_debug_context; // TODO: Get rid of this g namespace DebugUtils { +#define PICA_DUMP_GEOMETRY 0 +#define PICA_DUMP_SHADERS 0 +#define PICA_DUMP_TEXTURES 0 +#define PICA_LOG_TEV 0 + // Simple utility class for dumping geometry data to an OBJ file class GeometryDumper { public: |