diff options
| author | Tobin Ehlis <tobine@google.com> | 2016-07-07 08:12:03 -0600 |
|---|---|---|
| committer | Tobin Ehlis <tobine@google.com> | 2016-07-07 13:43:00 -0600 |
| commit | afcc59c24d2e42270b16999637cc1bdb29d39a34 (patch) | |
| tree | 9ef6ec6820329e6db2262062f818582b6b3c563a /layers/core_validation.cpp | |
| parent | 1c536bae4aa37bcdf6164589a4a3756a87c7737a (diff) | |
| download | usermoji-afcc59c24d2e42270b16999637cc1bdb29d39a34.tar.xz | |
layers: Rename pipelineLayout to pipeline_layout
Diffstat (limited to 'layers/core_validation.cpp')
| -rw-r--r-- | layers/core_validation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 918afe8d..7f00c91c 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -2611,7 +2611,7 @@ static bool validate_pipeline_shader_stage(debug_report_data *report_data, std::map<descriptor_slot_t, interface_var> descriptor_uses; collect_interface_by_descriptor_slot(report_data, module, accessible_ids, descriptor_uses); - auto pipelineLayout = pipeline->pipelineLayout; + auto pipelineLayout = pipeline->pipeline_layout; /* validate push constant usage */ pass &= validate_push_constant_usage(report_data, &pipelineLayout->pushConstantRanges, @@ -5859,7 +5859,7 @@ CreateGraphicsPipelines(VkDevice device, VkPipelineCache pipelineCache, uint32_t pPipeNode[i] = new PIPELINE_NODE; pPipeNode[i]->initGraphicsPipeline(&pCreateInfos[i]); pPipeNode[i]->render_pass_ci.initialize(getRenderPass(dev_data, pCreateInfos[i].renderPass)->pCreateInfo); - pPipeNode[i]->pipelineLayout = getPipelineLayout(dev_data, pCreateInfos[i].layout); + pPipeNode[i]->pipeline_layout = getPipelineLayout(dev_data, pCreateInfos[i].layout); skip_call |= verifyPipelineCreateState(dev_data, device, pPipeNode, i); } @@ -5903,7 +5903,7 @@ CreateComputePipelines(VkDevice device, VkPipelineCache pipelineCache, uint32_t // Create and initialize internal tracking data structure pPipeNode[i] = new PIPELINE_NODE; pPipeNode[i]->initComputePipeline(&pCreateInfos[i]); - pPipeNode[i]->pipelineLayout = getPipelineLayout(dev_data, pCreateInfos[i].layout); + pPipeNode[i]->pipeline_layout = getPipelineLayout(dev_data, pCreateInfos[i].layout); // memcpy(&pPipeNode[i]->computePipelineCI, (const void *)&pCreateInfos[i], sizeof(VkComputePipelineCreateInfo)); // TODO: Add Compute Pipeline Verification |
