aboutsummaryrefslogtreecommitdiff
path: root/layers/core_validation.cpp
diff options
context:
space:
mode:
authorTobin Ehlis <tobine@google.com>2016-10-20 06:35:39 -0600
committerTobin Ehlis <tobine@google.com>2016-10-25 21:15:48 -0600
commit2a49b8e052479af9395d8e55d506a1d687e1ea85 (patch)
tree42c71c02429e334adadeff92231750ed5469e4f2 /layers/core_validation.cpp
parent1f732cb40d1a752aa1ebf3c3eb4c1ae7a9c2a04a (diff)
downloadusermoji-2a49b8e052479af9395d8e55d506a1d687e1ea85.tar.xz
layers:Refactor DestroySampler
Update DestroySampler to use the Pre/Post pattern and add a validation flag for these checks.
Diffstat (limited to 'layers/core_validation.cpp')
-rw-r--r--layers/core_validation.cpp34
1 files changed, 25 insertions, 9 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp
index 4e3c5f31..eb95719b 100644
--- a/layers/core_validation.cpp
+++ b/layers/core_validation.cpp
@@ -6061,22 +6061,38 @@ DestroyPipelineLayout(VkDevice device, VkPipelineLayout pipelineLayout, const Vk
dev_data->dispatch_table.DestroyPipelineLayout(device, pipelineLayout, pAllocator);
}
+static bool PreCallValidateDestroySampler(layer_data *dev_data, VkSampler sampler, SAMPLER_NODE **sampler_state,
+ VK_OBJECT *obj_struct) {
+ if (dev_data->instance_data->disabled.destroy_sampler)
+ return false;
+ bool skip = false;
+ *sampler_state = getSamplerNode(dev_data, sampler);
+ if (*sampler_state) {
+ *obj_struct = {reinterpret_cast<uint64_t &>(sampler), VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT};
+ skip |= ValidateObjectNotInUse(dev_data, *sampler_state, *obj_struct, VALIDATION_ERROR_00837);
+ }
+ return skip;
+}
+
+static void PostCallRecordDestroySampler(layer_data *dev_data, VkSampler sampler, SAMPLER_NODE *sampler_state,
+ VK_OBJECT obj_struct) {
+ // Any bound cmd buffers are now invalid
+ invalidateCommandBuffers(sampler_state->cb_bindings, obj_struct);
+ dev_data->samplerMap.erase(sampler);
+}
+
VKAPI_ATTR void VKAPI_CALL
DestroySampler(VkDevice device, VkSampler sampler, const VkAllocationCallbacks *pAllocator) {
layer_data *dev_data = get_my_data_ptr(get_dispatch_key(device), layer_data_map);
- bool skip = false;
+ SAMPLER_NODE *sampler_state = nullptr;
+ VK_OBJECT obj_struct;
std::unique_lock<std::mutex> lock(global_lock);
- auto sampler_node = getSamplerNode(dev_data, sampler);
- if (sampler_node) {
- VK_OBJECT obj_struct = {reinterpret_cast<uint64_t &>(sampler), VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT};
- skip |= ValidateObjectNotInUse(dev_data, sampler_node, obj_struct, VALIDATION_ERROR_00837);
- // Any bound cmd buffers are now invalid
- invalidateCommandBuffers(sampler_node->cb_bindings, obj_struct);
- }
+ bool skip = PreCallValidateDestroySampler(dev_data, sampler, &sampler_state, &obj_struct);
if (!skip) {
- dev_data->samplerMap.erase(sampler);
lock.unlock();
dev_data->dispatch_table.DestroySampler(device, sampler, pAllocator);
+ lock.lock();
+ PostCallRecordDestroySampler(dev_data, sampler, sampler_state, obj_struct);
}
}