diff options
| author | 2015-08-11 22:32:39 +0100 | |
|---|---|---|
| committer | 2015-08-11 22:38:44 +0100 | |
| commit | 5115d0177ed9f77b091adbbbfd22f2f0a568a4bb (patch) | |
| tree | 3a243eee2146980bcbd708a552ca082d172eeda7 /src/video_core/debug_utils | |
| parent | Merge pull request #1028 from aroulin/arm-disas-media-instr (diff) | |
| download | yuzu-5115d0177ed9f77b091adbbbfd22f2f0a568a4bb.tar.gz yuzu-5115d0177ed9f77b091adbbbfd22f2f0a568a4bb.tar.xz yuzu-5115d0177ed9f77b091adbbbfd22f2f0a568a4bb.zip | |
ARM Core, Video Core, CitraQt, Citrace: Use CommonTypes types instead of the standard u?int*_t types.
Diffstat (limited to 'src/video_core/debug_utils')
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index e9a858411..572b4fd62 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | 18 | ||
| 19 | #include "common/assert.h" | 19 | #include "common/assert.h" |
| 20 | #include "common/color.h" | 20 | #include "common/color.h" |
| 21 | #include "common/common_types.h" | ||
| 21 | #include "common/file_util.h" | 22 | #include "common/file_util.h" |
| 22 | #include "common/math_util.h" | 23 | #include "common/math_util.h" |
| 23 | #include "common/vector_math.h" | 24 | #include "common/vector_math.h" |
| @@ -233,7 +234,7 @@ void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data | |||
| 233 | 234 | ||
| 234 | dvle.main_offset_words = main_offset; | 235 | dvle.main_offset_words = main_offset; |
| 235 | dvle.output_register_table_offset = write_offset - dvlb.dvle_offset; | 236 | dvle.output_register_table_offset = write_offset - dvlb.dvle_offset; |
| 236 | dvle.output_register_table_size = static_cast<uint32_t>(output_info_table.size()); | 237 | dvle.output_register_table_size = static_cast<u32>(output_info_table.size()); |
| 237 | QueueForWriting((u8*)output_info_table.data(), static_cast<u32>(output_info_table.size() * sizeof(OutputRegisterInfo))); | 238 | QueueForWriting((u8*)output_info_table.data(), static_cast<u32>(output_info_table.size() * sizeof(OutputRegisterInfo))); |
| 238 | 239 | ||
| 239 | // TODO: Create a label table for "main" | 240 | // TODO: Create a label table for "main" |