aboutsummaryrefslogtreecommitdiff
path: root/layers/draw_state.cpp
diff options
context:
space:
mode:
authorTobin Ehlis <tobin@lunarg.com>2015-06-22 18:00:14 -0600
committerTobin Ehlis <tobin@lunarg.com>2015-06-22 18:00:14 -0600
commitf6e73a22d772a15c11d3da2087a5115295f6a749 (patch)
tree654e1cdf10beceafefb93a46c8a847a3e4bac048 /layers/draw_state.cpp
parent213b3512be3b3f32cc560b2e6b7dd8e543a4450a (diff)
downloadusermoji-f6e73a22d772a15c11d3da2087a5115295f6a749.tar.xz
layers: Fix DrawState compile fail
Missed adding in layout when resolving merge conflict.
Diffstat (limited to 'layers/draw_state.cpp')
-rw-r--r--layers/draw_state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp
index 4791b410..a74af764 100644
--- a/layers/draw_state.cpp
+++ b/layers/draw_state.cpp
@@ -2194,7 +2194,7 @@ VK_LAYER_EXPORT void VKAPI vkCmdBindDescriptorSets(VkCmdBuffer cmdBuffer, VkPipe
"Attempt to bind DS %p that doesn't exist!", (void*)pDescriptorSets[i]);
}
}
- get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindDescriptorSets(cmdBuffer, pipelineBindPoint, firstSet, setCount, pDescriptorSets, dynamicOffsetCount, pDynamicOffsets);
+ get_dispatch_table(draw_state_device_table_map, cmdBuffer)->CmdBindDescriptorSets(cmdBuffer, pipelineBindPoint, layout, firstSet, setCount, pDescriptorSets, dynamicOffsetCount, pDynamicOffsets);
}
} else {
report_error_no_cb_begin(cmdBuffer, "vkCmdBindDescriptorSets()");