HomeSort by relevance Sort by last modified time
    Searched refs:queueFamilyProperties (Results 1 - 16 of 16) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBase.cpp 48 deUint32 findMatchingQueueFamilyIndex (const std::vector<vk::VkQueueFamilyProperties>& queueFamilyProperties,
52 for (deUint32 queueNdx = startIndex; queueNdx < queueFamilyProperties.size(); ++queueNdx)
54 if ((queueFamilyProperties[queueNdx].queueFlags & queueFlags) == queueFlags)
78 std::vector<VkQueueFamilyProperties> queueFamilyProperties;
79 queueFamilyProperties.resize(queueFamilyPropertiesCount);
81 instance.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &queueFamilyPropertiesCount, &queueFamilyProperties[0]);
98 queueFamilyIndex = findMatchingQueueFamilyIndex(queueFamilyProperties, queueRequirement.queueFlags, queueFamilyIndex);
103 const deUint32 queuesPerFamilyCount = deMin32(queueFamilyProperties[queueFamilyIndex].queueCount, queueRequirement.queueCount - queuesFoundCount);
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiDeviceInitializationTests.cpp 542 deUint32 getGlobalMaxQueueCount(const vector<VkQueueFamilyProperties>& queueFamilyProperties)
546 for (deUint32 queueFamilyNdx = 0; queueFamilyNdx < (deUint32)queueFamilyProperties.size(); queueFamilyNdx++)
548 maxQueueCount = de::max(maxQueueCount, queueFamilyProperties[queueFamilyNdx].queueCount);
562 const vector<VkQueueFamilyProperties> queueFamilyProperties = getPhysicalDeviceQueueFamilyProperties(instanceDriver, physicalDevice);
563 const vector<float> queuePriorities (getGlobalMaxQueueCount(queueFamilyProperties), 1.0f);
566 for (deUint32 queueFamilyNdx = 0; queueFamilyNdx < (deUint32)queueFamilyProperties.size(); queueFamilyNdx++)
568 const deUint32 maxQueueCount = queueFamilyProperties[queueFamilyNdx].queueCount;
vktApiFeatureInfo.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationBasicSemaphoreTests.cpp 116 std::vector<VkQueueFamilyProperties> queueFamilyProperties;
140 queueFamilyProperties = getPhysicalDeviceQueueFamilyProperties(instance, physicalDevice);
142 for (deUint32 queueNdx = 0; queueNdx < queueFamilyProperties.size(); ++queueNdx)
147 if (queues[FIRST].queueFamilyIndex != queueNdx || queueFamilyProperties[queueNdx].queueCount > 1u)
vktSynchronizationOperationMultiQueueTests.cpp 94 const std::vector<VkQueueFamilyProperties> queueFamilyProperties = getPhysicalDeviceQueueFamilyProperties(instance, physicalDevice);
96 for (deUint32 queuePropertiesNdx = 0; queuePropertiesNdx < queueFamilyProperties.size(); ++queuePropertiesNdx)
99 std::min(2u, queueFamilyProperties[queuePropertiesNdx].queueCount),
100 queueFamilyProperties[queuePropertiesNdx].queueFlags);
vktSynchronizationInternallySynchronizedObjectsTests.cpp 198 vector<VkQueueFamilyProperties> queueFamilyProperties;
202 queueFamilyProperties = getPhysicalDeviceQueueFamilyProperties(instance, physicalDevice);
204 for (deUint32 queuePropertiesNdx = 0; queuePropertiesNdx < queueFamilyProperties.size(); ++queuePropertiesNdx)
206 if (checkQueueFlags(queueFamilyProperties[queuePropertiesNdx].queueFlags, queueFlag))
208 queues.addQueueFamilyIndex(queuePropertiesNdx, queueFamilyProperties[queuePropertiesNdx].queueCount);
    [all...]
vktSynchronizationCrossInstanceSharingTests.cpp 227 const std::vector<vk::VkQueueFamilyProperties> queueFamilyProperties = vk::getPhysicalDeviceQueueFamilyProperties(vki, physicalDevice);
228 std::vector<deUint32> queueFamilyIndices (queueFamilyProperties.size(), 0xFFFFFFFFu);
261 for (size_t ndx = 0; ndx < queueFamilyProperties.size(); ndx++)
    [all...]
vktSynchronizationWin32KeyedMutexTests.cpp 174 const std::vector<vk::VkQueueFamilyProperties> queueFamilyProperties = vk::getPhysicalDeviceQueueFamilyProperties(vki, physicalDevice);
175 std::vector<deUint32> queueFamilyIndices (queueFamilyProperties.size(), 0xFFFFFFFFu);
188 for (size_t ndx = 0; ndx < queueFamilyProperties.size(); ndx++)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/device_limits/
device_limits.cpp 68 vector<unique_ptr<VkQueueFamilyProperties>> queueFamilyProperties;
276 phy_dev_data->queueFamilyProperties.reserve(*pCount);
278 phy_dev_data->queueFamilyProperties.emplace_back(new VkQueueFamilyProperties(pQueueFamilyProperties[i]));
364 // First check is app has actually requested queueFamilyProperties
378 if (phy_dev_data->queueFamilyProperties.size() <=
385 phy_dev_data->queueFamilyProperties[requestedIndex]->queueCount) {
391 requestedIndex, phy_dev_data->queueFamilyProperties[requestedIndex]->queueCount,
533 phy_dev_data->queueFamilyProperties.size()) { // requested index is out of bounds for this physical device
537 } else if (queueIndex >= phy_dev_data->queueFamilyProperties[queueFamilyIndex]->queueCount) {
542 queueFamilyIndex, phy_dev_data->queueFamilyProperties[queueFamilyIndex]->queueCount, queueIndex)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
device_limits.cpp 68 vector<unique_ptr<VkQueueFamilyProperties>> queueFamilyProperties;
276 phy_dev_data->queueFamilyProperties.reserve(*pCount);
278 phy_dev_data->queueFamilyProperties.emplace_back(new VkQueueFamilyProperties(pQueueFamilyProperties[i]));
364 // First check is app has actually requested queueFamilyProperties
378 if (phy_dev_data->queueFamilyProperties.size() <=
385 phy_dev_data->queueFamilyProperties[requestedIndex]->queueCount) {
391 requestedIndex, phy_dev_data->queueFamilyProperties[requestedIndex]->queueCount,
533 phy_dev_data->queueFamilyProperties.size()) { // requested index is out of bounds for this physical device
537 } else if (queueIndex >= phy_dev_data->queueFamilyProperties[queueFamilyIndex]->queueCount) {
542 queueFamilyIndex, phy_dev_data->queueFamilyProperties[queueFamilyIndex]->queueCount, queueIndex)
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 558 GetPhysicalDeviceQueueFamilyProperties(physical_device, count, properties ? &properties->queueFamilyProperties : nullptr);
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkStructTypes.inl     [all...]
vkStrUtilImpl.inl     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.hpp     [all...]
  /external/skia/third_party/vulkan/vulkan/
vulkan.h     [all...]
  /frameworks/native/vulkan/include/vulkan/
vulkan.h     [all...]

Completed in 125 milliseconds