diff options
author | Rohit Nirmal <rohitnirmal9@gmail.com> | 2014-11-30 08:44:30 +0100 |
---|---|---|
committer | Rohit Nirmal <rohitnirmal9@gmail.com> | 2014-12-01 05:29:23 +0100 |
commit | f9b53c3e943c06e982e0abbd2f87245d63c17776 (patch) | |
tree | 2a0e0150355acec549a08488c8b2b7f12167d4ef /src/video_core/debug_utils | |
parent | Merge pull request #227 from vaguilar/fix-warnings (diff) | |
download | yuzu-f9b53c3e943c06e982e0abbd2f87245d63c17776.tar yuzu-f9b53c3e943c06e982e0abbd2f87245d63c17776.tar.gz yuzu-f9b53c3e943c06e982e0abbd2f87245d63c17776.tar.bz2 yuzu-f9b53c3e943c06e982e0abbd2f87245d63c17776.tar.lz yuzu-f9b53c3e943c06e982e0abbd2f87245d63c17776.tar.xz yuzu-f9b53c3e943c06e982e0abbd2f87245d63c17776.tar.zst yuzu-f9b53c3e943c06e982e0abbd2f87245d63c17776.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index 275b06b7c..8a5f11424 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -155,7 +155,7 @@ void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data // This is put into a try-catch block to make sure we notice unknown configurations. std::vector<OutputRegisterInfo> output_info_table; - for (int i = 0; i < 7; ++i) { + for (unsigned i = 0; i < 7; ++i) { using OutputAttributes = Pica::Regs::VSOutputAttributes; // TODO: It's still unclear how the attribute components map to the register! @@ -375,8 +375,8 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) { png_write_info(png_ptr, info_ptr); buf = new u8[row_stride * texture_config.height]; - for (int y = 0; y < texture_config.height; ++y) { - for (int x = 0; x < texture_config.width; ++x) { + for (unsigned y = 0; y < texture_config.height; ++y) { + for (unsigned x = 0; x < texture_config.width; ++x) { // Cf. rasterizer code for an explanation of this algorithm. int texel_index_within_tile = 0; for (int block_size_index = 0; block_size_index < 3; ++block_size_index) { @@ -402,7 +402,7 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) { } // Write image data - for (auto y = 0; y < texture_config.height; ++y) + for (unsigned y = 0; y < texture_config.height; ++y) { u8* row_ptr = (u8*)buf + y * row_stride; u8* ptr = row_ptr; |