diff options
| author | Bob Ellison <bob@lunarg.com> | 2018-12-21 11:46:44 -0700 |
|---|---|---|
| committer | Bob Ellison <45772930+lunarpapillo@users.noreply.github.com> | 2018-12-21 13:13:33 -0700 |
| commit | bf7869bdd428fb3b04f71191daf4243e62e95860 (patch) | |
| tree | 661507ff460a666f03d63993db2334ebc1b6e7eb | |
| parent | 53b8ef0069358ec7cd32bf6019ab24689b361c08 (diff) | |
| download | usermoji-bf7869bdd428fb3b04f71191daf4243e62e95860.tar.xz | |
vulkaninfo: minor fix after review
Changed
for (unsigned int i = 0,...)
to
for (uint32_t i i = 0,...)
for consistency with the rest of the file.
| -rw-r--r-- | vulkaninfo/vulkaninfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vulkaninfo/vulkaninfo.c b/vulkaninfo/vulkaninfo.c index 280be885..df060ca6 100644 --- a/vulkaninfo/vulkaninfo.c +++ b/vulkaninfo/vulkaninfo.c @@ -2009,7 +2009,7 @@ static void AppDevDump(const struct AppGpu *gpu, FILE *out) { } bool first_in_list = true; // Used for commas in json output - for (unsigned int i = 0; i < sizeof(supported_format_ranges)/sizeof(supported_format_ranges[0]); i++) { + for (uint32_t i = 0; i < sizeof(supported_format_ranges)/sizeof(supported_format_ranges[0]); i++) { struct FormatRange format_range = supported_format_ranges[i]; if (FormatRangeSupported(&format_range, gpu)) { for (VkFormat fmt = format_range.first_format; fmt <= format_range.last_format; ++fmt) { |
