HomeSort by relevance Sort by last modified time
    Searched refs:DescriptorSet (Results 1 - 25 of 28) sorted by null

1 2

  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
descriptor_sets.h 250 const std::unordered_map<VkDescriptorSet, cvdescriptorset::DescriptorSet *> &, uint32_t,
253 void PerformUpdateDescriptorSets(const std::unordered_map<VkDescriptorSet, cvdescriptorset::DescriptorSet *> &, uint32_t,
256 * DescriptorSet class
268 * In order to validate update contents, the DescriptorSet stores a bunch of ptrs
273 class DescriptorSet : public BASE_NODE {
276 DescriptorSet(const VkDescriptorSet, const DescriptorSetLayout *, const std::unordered_map<VkBuffer, BUFFER_NODE> *,
283 ~DescriptorSet();
323 bool ValidateCopyUpdate(const debug_report_data *, const VkCopyDescriptorSet *, const DescriptorSet *, std::string *);
325 void PerformCopyUpdate(const VkCopyDescriptorSet *, const DescriptorSet *);
350 bool VerifyCopyUpdateContents(const VkCopyDescriptorSet *, const DescriptorSet *, const uint32_t, std::string *) const
    [all...]
descriptor_sets.cpp 263 cvdescriptorset::DescriptorSet::DescriptorSet(const VkDescriptorSet set, const DescriptorSetLayout *layout,
325 cvdescriptorset::DescriptorSet::~DescriptorSet() {
335 bool cvdescriptorset::DescriptorSet::IsCompatible(const DescriptorSetLayout *layout, std::string *error) const {
342 bool cvdescriptorset::DescriptorSet::ValidateDrawState(const std::unordered_set<uint32_t> &bindings,
417 uint32_t cvdescriptorset::DescriptorSet::GetStorageUpdates(const std::unordered_set<uint32_t> &bindings,
456 uint32_t cvdescriptorset::DescriptorSet::GetAllStorageUpdates(std::unordered_set<VkBuffer> *buffer_set,
463 void cvdescriptorset::DescriptorSet::InvalidateBoundCmdBuffers() {
469 void cvdescriptorset::DescriptorSet::PerformWriteUpdate(const VkWriteDescriptorSet *update)
    [all...]
core_validation_types.h 57 class DescriptorSet;
366 std::unordered_set<cvdescriptorset::DescriptorSet *> uniqueBoundSets;
368 std::vector<cvdescriptorset::DescriptorSet *> boundDescriptorSets;
415 std::unordered_set<cvdescriptorset::DescriptorSet *> destroyedSets;
416 std::unordered_set<cvdescriptorset::DescriptorSet *> updatedSets;
core_validation.h 274 std::unordered_set<cvdescriptorset::DescriptorSet *> sets; // Collection of all sets in this pool
  /external/vulkan-validation-layers/tests/
vktestbinding.h 55 class DescriptorSet;
186 static VkWriteDescriptorSet write_descriptor_set(const DescriptorSet &set, uint32_t binding, uint32_t array_element,
189 static VkWriteDescriptorSet write_descriptor_set(const DescriptorSet &set, uint32_t binding, uint32_t array_element,
192 static VkWriteDescriptorSet write_descriptor_set(const DescriptorSet &set, uint32_t binding, uint32_t array_element,
194 static VkWriteDescriptorSet write_descriptor_set(const DescriptorSet &set, uint32_t binding, uint32_t array_element,
196 static VkWriteDescriptorSet write_descriptor_set(const DescriptorSet &set, uint32_t binding, uint32_t array_element,
198 static VkWriteDescriptorSet write_descriptor_set(const DescriptorSet &set, uint32_t binding, uint32_t array_element,
201 static VkCopyDescriptorSet copy_descriptor_set(const DescriptorSet &src_set, uint32_t src_binding, uint32_t src_array_element,
202 const DescriptorSet &dst_set, uint32_t dst_binding, uint32_t dst_array_element,
536 std::vector<DescriptorSet *> alloc_sets(const Device &dev, const std::vector<const DescriptorSetLayout *> &layouts)
    [all...]
vktestbinding.cpp 664 std::vector<DescriptorSet *> DescriptorPool::alloc_sets(const Device &dev,
679 std::vector<DescriptorSet *> sets;
682 DescriptorSet *descriptorSet = new DescriptorSet(dev, this, *it);
683 sets.push_back(descriptorSet);
688 std::vector<DescriptorSet *> DescriptorPool::alloc_sets(const Device &dev, const DescriptorSetLayout &layout, uint32_t count) {
692 DescriptorSet *DescriptorPool::alloc_sets(const Device &dev, const DescriptorSetLayout &layout) {
693 std::vector<DescriptorSet *> set = alloc_sets(dev, layout, 1);
697 DescriptorSet::~DescriptorSet()
    [all...]
vkrenderframework.h 164 void BindDescriptorSet(VkDescriptorSetObj &descriptorSet);
370 vk_testing::DescriptorSet *m_set = NULL;
vkrenderframework.cpp 438 m_writes.push_back(vk_testing::Device::write_descriptor_set(vk_testing::DescriptorSet(), m_nextSlot, 0, type, 1,
458 m_writes.push_back(vk_testing::Device::write_descriptor_set(vk_testing::DescriptorSet(), m_nextSlot, 0,
    [all...]
  /external/vulkan-validation-layers/layers/
descriptor_sets.h 278 std::unordered_map<VkDescriptorSet, cvdescriptorset::DescriptorSet *> *,
282 * DescriptorSet class
294 * In order to validate update contents, the DescriptorSet stores a bunch of ptrs
299 class DescriptorSet : public BASE_NODE {
301 DescriptorSet(const VkDescriptorSet, const VkDescriptorPool, const DescriptorSetLayout *, const core_validation::layer_data *);
302 ~DescriptorSet();
340 bool ValidateCopyUpdate(const debug_report_data *, const VkCopyDescriptorSet *, const DescriptorSet *,
343 void PerformCopyUpdate(const VkCopyDescriptorSet *, const DescriptorSet *);
369 bool VerifyCopyUpdateContents(const VkCopyDescriptorSet *, const DescriptorSet *, VkDescriptorType, uint32_t,
descriptor_sets.cpp 278 cvdescriptorset::DescriptorSet::DescriptorSet(const VkDescriptorSet set, const VkDescriptorPool pool,
332 cvdescriptorset::DescriptorSet::~DescriptorSet() {
354 bool cvdescriptorset::DescriptorSet::IsCompatible(const DescriptorSetLayout *layout, std::string *error) const {
362 bool cvdescriptorset::DescriptorSet::ValidateDrawState(const std::map<uint32_t, descriptor_req> &bindings,
489 uint32_t cvdescriptorset::DescriptorSet::GetStorageUpdates(const std::map<uint32_t, descriptor_req> &bindings,
532 void cvdescriptorset::DescriptorSet::InvalidateBoundCmdBuffers() {
537 void cvdescriptorset::DescriptorSet::PerformWriteUpdate(const VkWriteDescriptorSet *update) {
549 bool cvdescriptorset::DescriptorSet::ValidateCopyUpdate(const debug_report_data *report_data, const VkCopyDescriptorSet *update
    [all...]
core_validation_types.h 62 class DescriptorSet;
119 std::unordered_set<cvdescriptorset::DescriptorSet *> sets; // Collection of all sets in this pool
544 std::vector<cvdescriptorset::DescriptorSet *> boundDescriptorSets;
632 cvdescriptorset::DescriptorSet *getSetNode(const layer_data *, VkDescriptorSet);
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/common/
descriptor_sets.cpp 263 cvdescriptorset::DescriptorSet::DescriptorSet(const VkDescriptorSet set, const DescriptorSetLayout *layout,
325 cvdescriptorset::DescriptorSet::~DescriptorSet() {
335 bool cvdescriptorset::DescriptorSet::IsCompatible(const DescriptorSetLayout *layout, std::string *error) const {
342 bool cvdescriptorset::DescriptorSet::ValidateDrawState(const std::unordered_set<uint32_t> &bindings,
417 uint32_t cvdescriptorset::DescriptorSet::GetStorageUpdates(const std::unordered_set<uint32_t> &bindings,
456 uint32_t cvdescriptorset::DescriptorSet::GetAllStorageUpdates(std::unordered_set<VkBuffer> *buffer_set,
463 void cvdescriptorset::DescriptorSet::InvalidateBoundCmdBuffers() {
469 void cvdescriptorset::DescriptorSet::PerformWriteUpdate(const VkWriteDescriptorSet *update)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/core_validation/
descriptor_sets.cpp 263 cvdescriptorset::DescriptorSet::DescriptorSet(const VkDescriptorSet set, const DescriptorSetLayout *layout,
325 cvdescriptorset::DescriptorSet::~DescriptorSet() {
335 bool cvdescriptorset::DescriptorSet::IsCompatible(const DescriptorSetLayout *layout, std::string *error) const {
342 bool cvdescriptorset::DescriptorSet::ValidateDrawState(const std::unordered_set<uint32_t> &bindings,
417 uint32_t cvdescriptorset::DescriptorSet::GetStorageUpdates(const std::unordered_set<uint32_t> &bindings,
456 uint32_t cvdescriptorset::DescriptorSet::GetAllStorageUpdates(std::unordered_set<VkBuffer> *buffer_set,
463 void cvdescriptorset::DescriptorSet::InvalidateBoundCmdBuffers() {
469 void cvdescriptorset::DescriptorSet::PerformWriteUpdate(const VkWriteDescriptorSet *update)
    [all...]
core_validation.cpp 134 unordered_map<VkDescriptorSet, cvdescriptorset::DescriptorSet *> setMap;
    [all...]
  /external/mesa3d/src/compiler/spirv/
spirv_info.c 130 DECORATION(DescriptorSet),
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 392 class DescriptorSet
395 DescriptorSet (VkDevice, VkDescriptorPool, VkDescriptorSetLayout) {}
419 vector<DescriptorSet*> m_managedSets;
424 DescriptorSet* const impl = new DescriptorSet(m_device, VkDescriptorPool(reinterpret_cast<deUintptr>(this)), setLayout);
441 DescriptorSet* const impl = reinterpret_cast<DescriptorSet*>((deUintptr)set.getInternal());
    [all...]
  /frameworks/rs/rsov/compiler/
Wrapper.cpp 51 bufferVar->decorate(Decoration::DescriptorSet)->addExtraOperand(0);
240 bufferVar->decorate(Decoration::DescriptorSet)->addExtraOperand(0);
324 bufferVar->decorate(Decoration::DescriptorSet)->addExtraOperand(0);
GlobalAllocSPIRITPass.cpp 62 MetadataVar->decorate(Decoration::DescriptorSet)->addExtraOperand(0);
  /external/vulkan-validation-layers/demos/android/include/
cube.frag.h 28 Decorate 13(tex) DescriptorSet 0
cube.vert.h 42 Decorate 17(ubuf) DescriptorSet 0
  /frameworks/rs/rsov/compiler/spirit/
builder_test.cpp 60 InputBuffer->decorate(Decoration::DescriptorSet)->addExtraOperand(0);
73 OutputBuffer->decorate(Decoration::DescriptorSet)->addExtraOperand(0);
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.hpp     [all...]
  /external/vulkan-validation-layers/demos/smoke/android/src/main/jni/
Smoke.push_constant.vert.h 48 Decorate 14(params) DescriptorSet 0
Smoke.vert.h 48 Decorate 14(params) DescriptorSet 0

Completed in 275 milliseconds

1 2