Searched defs:descriptorType (Results 1 - 17 of 17) sorted by relevance

/external/opencv3/modules/features2d/src/
H A Dfeature2d.cpp152 int Feature2D::descriptorType() const function in class:cv::Feature2D
159 int tp = descriptorType();
H A Dbagofwords.cpp168 int BOWImgDescriptorExtractor::descriptorType() const function in class:cv::BOWImgDescriptorExtractor
190 _imgDescriptor.create(1, clusterCount, descriptorType());
H A Dakaze.cpp130 int descriptorType() const function in class:cv::AKAZE_Impl
214 CV_Assert((!desc.rows || (desc.type() == descriptorType())));
H A Dkaze.cpp97 int descriptorType() const function in class:cv::KAZE_Impl
149 CV_Assert((!desc.rows || (desc.type() == descriptorType())));
H A Dbrisk.cpp69 int descriptorType() const function in class:cv::BRISK_Impl
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkBuilderUtil.cpp37 DescriptorSetLayoutBuilder& DescriptorSetLayoutBuilder::addBinding (VkDescriptorType descriptorType, argument
60 descriptorType, // descriptorType
158 VkDescriptorType descriptorType,
172 descriptorType, //!< descriptorType
154 write(VkDescriptorSet destSet, deUint32 destBinding, deUint32 destArrayElement, deUint32 count, VkDescriptorType descriptorType, const VkDescriptorImageInfo* pImageInfo, const VkDescriptorBufferInfo* pBufferInfo, const VkBufferView* pTexelBufferView) argument
H A DvkBuilderUtil.hpp39 DescriptorSetLayoutBuilder& addBinding (VkDescriptorType descriptorType,
48 inline DescriptorSetLayoutBuilder& addSingleBinding (VkDescriptorType descriptorType, argument
51 return addBinding(descriptorType, 1u, stageFlags, (VkSampler*)DE_NULL);
53 inline DescriptorSetLayoutBuilder& addArrayBinding (VkDescriptorType descriptorType, argument
57 return addBinding(descriptorType, descriptorCount, stageFlags, (VkSampler*)DE_NULL);
59 inline DescriptorSetLayoutBuilder& addSingleSamplerBinding (VkDescriptorType descriptorType, argument
65 return addBinding(descriptorType, 1u, stageFlags, immutableSampler);
67 inline DescriptorSetLayoutBuilder& addArraySamplerBinding (VkDescriptorType descriptorType, argument
72 return addBinding(descriptorType, descriptorCount, stageFlags, pImmutableSamplers);
141 VkDescriptorType descriptorType,
158 writeSingle(VkDescriptorSet destSet, const Location& destLocation, VkDescriptorType descriptorType, const VkDescriptorImageInfo* pImageInfo) argument
166 writeSingle(VkDescriptorSet destSet, const Location& destLocation, VkDescriptorType descriptorType, const VkDescriptorBufferInfo* pBufferInfo) argument
174 writeSingle(VkDescriptorSet destSet, const Location& destLocation, VkDescriptorType descriptorType, const VkBufferView* pTexelBufferView) argument
182 writeArray(VkDescriptorSet destSet, const Location& destLocation, VkDescriptorType descriptorType, deUint32 numDescriptors, const VkDescriptorImageInfo* pImageInfo) argument
191 writeArray(VkDescriptorSet destSet, const Location& destLocation, VkDescriptorType descriptorType, deUint32 numDescriptors, const VkDescriptorBufferInfo* pBufferInfo) argument
200 writeArray(VkDescriptorSet destSet, const Location& destLocation, VkDescriptorType descriptorType, deUint32 numDescriptors, const VkBufferView* pTexelBufferView) argument
[all...]
/external/opencv3/modules/java/src/
H A Dfeatures2d+DescriptorExtractor.java92 // C++: int descriptorType()
95 //javadoc: javaDescriptorExtractor::descriptorType()
96 public int descriptorType() method in class:DescriptorExtractor
177 // C++: int descriptorType()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderExecutor.hpp122 VkDescriptorType descriptorType,
132 VkDescriptorType descriptorType,
271 VkDescriptorType descriptorType,
308 UniformData (deUint32 bindingLocation, VkDescriptorType descriptorType, const T data);
318 UniformData<T>::UniformData (deUint32 bindingLocation, VkDescriptorType descriptorType, const T data) argument
320 , m_descriptorType (descriptorType)
340 UniformArrayData (deUint32 bindingLocation, VkDescriptorType descriptorType, const std::vector<T>& data);
350 UniformArrayData<T>::UniformArrayData (deUint32 bindingLocation, VkDescriptorType descriptorType, const std::vector<T>& data) argument
352 , m_descriptorType (descriptorType)
H A DvktOpaqueTypeIndexingTests.cpp109 void checkSupported (const VkDescriptorType descriptorType);
169 void OpaqueTypeIndexingTestInstance::checkSupported (const VkDescriptorType descriptorType) argument
175 switch (descriptorType)
866 VkDescriptorType descriptorType = m_blockType == BLOCKTYPE_UNIFORM ? VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER : VK_DESCRIPTOR_TYPE_STORAGE_BUFFER; local
868 checkSupported(descriptorType);
870 m_uniformSetup->addData(new UniformArrayData<deUint32>(bindingLocation++, descriptorType, m_inValues));
H A DvktShaderExecutor.cpp2945 VkDescriptorType descriptorType,
2949 DE_ASSERT(descriptorType == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER || descriptorType == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER);
2951 VkImageUsageFlags usage = descriptorType == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER ? VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT : VK_BUFFER_USAGE_STORAGE_BUFFER_BIT;
2973 uniformInfo->type = descriptorType;
2988 VkDescriptorType descriptorType,
2992 de::MovePtr<BufferUniform> uniform = createBufferUniform(vkDevice, vk, queue, queueFamilyIndex, memAlloc, bindingLocation, descriptorType, size, dataPtr);
2994 m_descriptorSetLayoutBuilder.addSingleBinding(descriptorType, VK_SHADER_STAGE_ALL);
2995 m_descriptorPoolBuilder.addType(descriptorType);
3006 VkDescriptorType descriptorType,
2939 createBufferUniform(const VkDevice& vkDevice, const DeviceInterface& vk, const VkQueue , const deUint32 queueFamilyIndex, Allocator& memAlloc, deUint32 bindingLocation, VkDescriptorType descriptorType, deUint32 size, const void* dataPtr) argument
2982 setupUniformData(const VkDevice& vkDevice, const DeviceInterface& vk, const VkQueue queue, const deUint32 queueFamilyIndex, Allocator& memAlloc, deUint32 bindingLocation, VkDescriptorType descriptorType, deUint32 size, const void* dataPtr) argument
3000 setupUniformArray(const VkDevice& vkDevice, const DeviceInterface& vk, const VkQueue queue, const deUint32 queueFamilyIndex, Allocator& memAlloc, deUint32 bindingLocation, VkDescriptorType descriptorType, deUint32 arraySize, deUint32 size, const void* dataPtr) argument
[all...]
/external/opencv3/modules/features2d/misc/java/src/cpp/
H A Dfeatures2d_manual.hpp307 CV_WRAP int descriptorType() const function
308 { return wrapped->descriptorType(); }
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRender.hpp386 vk::VkDescriptorType descriptorType,
389 vk::VkDescriptorType descriptorType,
529 void ShaderRenderCaseInstance::addUniform (deUint32 bindingLocation, vk::VkDescriptorType descriptorType, const T& data) argument
531 addUniform(bindingLocation, descriptorType, sizeof(T), &data);
H A DvktShaderRender.cpp545 void ShaderRenderCaseInstance::addUniform (deUint32 bindingLocation, vk::VkDescriptorType descriptorType, size_t dataSize, const void* data) argument
547 m_descriptorSetLayoutBuilder.addSingleBinding(descriptorType, vk::VK_SHADER_STAGE_ALL);
548 m_descriptorPoolBuilder.addType(descriptorType);
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingShaderAccessTests.cpp1129 vk::VkDescriptorType descriptorType,
1139 vk::VkDescriptorType descriptorType,
1146 vk::VkDescriptorType descriptorType,
1151 vk::VkDescriptorType descriptorType,
1159 vk::VkDescriptorType descriptorType,
1216 vk::VkDescriptorType descriptorType,
1223 , m_descriptorType (descriptorType)
1257 vk::VkDescriptorType descriptorType,
1272 const bool isUniformBuffer = isUniformDescriptorType(descriptorType);
1310 vk::VkDescriptorType descriptorType,
1214 BufferRenderInstance(Context& context, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags stageFlags, ShaderInputInterface shaderInterface, bool viewOffset, bool dynamicOffset, bool dynamicOffsetNonZero) argument
1254 createSourceBuffer(const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkDescriptorType descriptorType, deUint32 offset, deUint32 bufferSize, de::MovePtr<vk::Allocation>* outMemory) argument
1308 createDescriptorPool(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface) argument
1318 createDescriptorSetLayout(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkShaderStageFlags stageFlags) argument
1348 createDescriptorSet(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorSetLayout descriptorSetLayout, vk::VkDescriptorPool descriptorPool, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkBuffer bufferA, deUint32 offsetA, vk::VkBuffer bufferB, deUint32 offsetB) argument
1862 BufferComputeInstance(Context& context, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, bool viewOffset, bool dynamicOffset, bool dynamicOffsetNonZero) argument
2631 BufferDescriptorCase(tcu::TestContext& testCtx, const char* name, const char* description, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags exitingStages, vk::VkShaderStageFlags activeStages, ShaderInputInterface shaderInterface, deUint32 flags) argument
2826 ImageInstanceImages(const vk::DeviceInterface& vki, vk::VkDevice device, deUint32 queueFamilyIndex, vk::VkQueue queue, vk::Allocator& allocator, vk::VkDescriptorType descriptorType, vk::VkImageViewType viewType, int numImages, deUint32 baseMipLevel, deUint32 baseArraySlice) argument
2867 createImage(const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkDescriptorType descriptorType, vk::VkImageViewType viewType, const tcu::TextureLevelPyramid& sourceImage, de::MovePtr<vk::Allocation>* outAllocation) argument
3195 ImageFetchInstanceImages(const vk::DeviceInterface& vki, vk::VkDevice device, deUint32 queueFamilyIndex, vk::VkQueue queue, vk::Allocator& allocator, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkImageViewType viewType, deUint32 baseMipLevel, deUint32 baseArraySlice) argument
3333 ImageFetchRenderInstance(vkt::Context& context, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags stageFlags, ShaderInputInterface shaderInterface, vk::VkImageViewType viewType, deUint32 baseMipLevel, deUint32 baseArraySlice) argument
3356 createDescriptorSetLayout(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkShaderStageFlags stageFlags) argument
3403 createDescriptorPool(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface) argument
3413 createDescriptorSet(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkDescriptorSetLayout layout, vk::VkDescriptorPool pool, vk::VkImageView viewA, vk::VkImageView viewB) argument
3582 ImageFetchComputeInstance(Context& context, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkImageViewType viewType, deUint32 baseMipLevel, deUint32 baseArraySlice) argument
3844 ImageSampleInstanceImages(const vk::DeviceInterface& vki, vk::VkDevice device, deUint32 queueFamilyIndex, vk::VkQueue queue, vk::Allocator& allocator, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkImageViewType viewType, deUint32 baseMipLevel, deUint32 baseArraySlice, bool immutable) argument
4026 getNumImages(vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface) argument
4213 ImageSampleRenderInstance(vkt::Context& context, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags stageFlags, ShaderInputInterface shaderInterface, vk::VkImageViewType viewType, deUint32 baseMipLevel, deUint32 baseArraySlice, bool isImmutable) argument
4237 createDescriptorSetLayout(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkShaderStageFlags stageFlags, const ImageSampleInstanceImages& images) argument
4306 createDescriptorPool(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface) argument
4332 createDescriptorSet(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkDescriptorSetLayout layout, vk::VkDescriptorPool pool, bool isImmutable, const ImageSampleInstanceImages& images) argument
4608 ImageSampleComputeInstance(Context& context, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkImageViewType viewType, deUint32 baseMipLevel, deUint32 baseArraySlice, bool isImmutableSampler) argument
4978 ImageDescriptorCase(tcu::TestContext& testCtx, const char* name, const char* description, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags exitingStages, vk::VkShaderStageFlags activeStages, ShaderInputInterface shaderInterface, vk::VkImageViewType viewType, deUint32 flags) argument
5362 TexelBufferInstanceBuffers(const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkDescriptorType descriptorType, int numTexelBuffers, bool hasViewOffset) argument
5407 createBuffer(const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkDescriptorType descriptorType, de::MovePtr<vk::Allocation> *outAllocation) argument
5451 createBarrier(vk::VkDescriptorType descriptorType, vk::VkBuffer buffer) argument
5575 TexelBufferRenderInstance(vkt::Context& context, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags stageFlags, ShaderInputInterface shaderInterface, bool nonzeroViewOffset) argument
5594 createDescriptorSetLayout(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkShaderStageFlags stageFlags) argument
5641 createDescriptorPool(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface) argument
5651 createDescriptorSet(const vk::DeviceInterface& vki, vk::VkDevice device, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, vk::VkDescriptorSetLayout layout, vk::VkDescriptorPool pool, vk::VkBufferView viewA, vk::VkBufferView viewB) argument
5811 TexelBufferComputeInstance(Context& context, vk::VkDescriptorType descriptorType, ShaderInputInterface shaderInterface, bool nonzeroViewOffset) argument
6054 TexelBufferDescriptorCase(tcu::TestContext& testCtx, const char* name, const char* description, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags exitingStages, vk::VkShaderStageFlags activeStages, ShaderInputInterface shaderInterface, deUint32 flags) argument
6151 createShaderAccessImageTests(tcu::TestCaseGroup* group, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags exitingStages, vk::VkShaderStageFlags activeStages, ShaderInputInterface dimension, deUint32 resourceFlags) argument
6219 createShaderAccessTexelBufferTests(tcu::TestCaseGroup* group, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags exitingStages, vk::VkShaderStageFlags activeStages, ShaderInputInterface dimension, deUint32 resourceFlags) argument
6258 createShaderAccessBufferTests(tcu::TestCaseGroup* group, bool isPrimaryCmdBuf, vk::VkDescriptorType descriptorType, vk::VkShaderStageFlags exitingStages, vk::VkShaderStageFlags activeStages, ShaderInputInterface dimension, deUint32 resourceFlags) argument
6322 const vk::VkDescriptorType descriptorType; member in struct:vkt::BindingModel::__anon3622
[all...]
/external/skia/third_party/vulkan/
H A Dvulkan.h1890 VkDescriptorType descriptorType; member in struct:VkDescriptorSetLayoutBinding
1945 VkDescriptorType descriptorType; member in struct:VkWriteDescriptorSet
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1899 VkDescriptorType descriptorType; member in struct:VkDescriptorSetLayoutBinding
1954 VkDescriptorType descriptorType; member in struct:VkWriteDescriptorSet

Completed in 533 milliseconds