diff options
| author | Tony Barbour <tony@LunarG.com> | 2015-07-13 15:28:47 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-07-17 10:05:22 -0600 |
| commit | d2d3c3f47fa795dd6d1c70cef9ccdc350c6aea0f (patch) | |
| tree | 5e426a849efe3fe37f539800ebfd71783c935f92 /layers/shader_checker.cpp | |
| parent | ea092618b1b6df81c09c6d3abb30516a7daa321e (diff) | |
| download | usermoji-d2d3c3f47fa795dd6d1c70cef9ccdc350c6aea0f.tar.xz | |
Windows: more changes for windows compiler
Diffstat (limited to 'layers/shader_checker.cpp')
| -rw-r--r-- | layers/shader_checker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/shader_checker.cpp b/layers/shader_checker.cpp index 2955f8d5..94b39845 100644 --- a/layers/shader_checker.cpp +++ b/layers/shader_checker.cpp @@ -902,7 +902,7 @@ validate_graphics_pipeline(VkDevice dev, uint32_t count, VkGraphicsPipelineCreat loader_platform_thread_lock_mutex(&globalLock); - for (auto i = 0; i < pCreateInfo->stageCount; i++) { + for (uint32_t i = 0; i < pCreateInfo->stageCount; i++) { VkPipelineShaderStageCreateInfo const *pStage = &pCreateInfo->pStages[i]; if (pStage->sType == VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO) { |
