Searched defs:queueCount (Results 1 - 14 of 14) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesBase.cpp42 QueueFamilyQueuesCount() : queueCount(0u) {};
44 deUint32 queueCount; member in struct:vkt::sparse::__anon4533::QueueFamilyQueuesCount
135 const deUint32 queuesPerFamilyCount = deMin32(queueFamilyProperties[queueFamilyIndex].queueCount, queueRequirement.queueCount - queuesFoundCount);
137 selectedQueueFamilies[queueFamilyIndex].queueCount = deMax32(queuesPerFamilyCount, selectedQueueFamilies[queueFamilyIndex].queueCount);
151 } while (queuesFoundCount < queueRequirement.queueCount);
158 for (deUint32 queueNdx = 0; queueNdx < queueFamilyIter->second.queueCount; ++queueNdx)
167 queueFamilyIter->second.queueCount, // uint32_t queueCount;
[all...]
H A DvktSparseResourcesBase.hpp52 , queueCount(qCount)
56 deUint32 queueCount; member in struct:vkt::sparse::QueueRequirements
/external/skia/src/gpu/vk/
H A DGrVkBackendContext.cpp166 uint32_t queueCount; local
167 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr);
168 if (!queueCount) {
174 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties));
178 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps);
181 uint32_t graphicsQueueIndex = queueCount;
182 for (uint32_t i = 0; i < queueCount; i++) {
188 if (graphicsQueueIndex == queueCount) {
195 uint32_t presentQueueIndex = queueCount;
197 for (uint32_t i = 0; i < queueCount;
[all...]
/external/skqp/src/gpu/vk/
H A DGrVkBackendContext.cpp166 uint32_t queueCount; local
167 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr);
168 if (!queueCount) {
174 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties));
178 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps);
181 uint32_t graphicsQueueIndex = queueCount;
182 for (uint32_t i = 0; i < queueCount; i++) {
188 if (graphicsQueueIndex == queueCount) {
195 uint32_t presentQueueIndex = queueCount;
197 for (uint32_t i = 0; i < queueCount;
[all...]
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiDeviceInitializationTests.cpp393 const deUint32 queueCount = 1; local
402 queueCount, //queueCount;
438 const deUint32 queueCount = 1; local
447 queueCount, //queueCount;
530 1, //queueCount;
579 maxQueueCount = de::max(maxQueueCount, queueFamilyProperties[queueFamilyNdx].queueCount);
599 const deUint32 maxQueueCount = queueFamilyProperties[queueFamilyNdx].queueCount;
601 for (deUint32 queueCount
636 const deUint32 queueCount = deviceCreateInfo.pQueueCreateInfos->queueCount; local
686 const deUint32 queueCount = 1; local
748 const deUint32 queueCount = 1; local
[all...]
/external/vulkan-validation-layers/tests/
H A Dloader_validation_tests.cpp123 0, // queueCount
151 DeviceQueueCreateInfo &queueCount(uint32_t const &queueCount) { argument
152 info.queueCount = queueCount;
658 VK::DeviceQueueCreateInfo().queueFamilyIndex(q).queueCount(1).pQueuePriorities(priorities)};
714 VK::DeviceQueueCreateInfo().queueFamilyIndex(q).queueCount(1).pQueuePriorities(priorities)};
1019 VK::DeviceQueueCreateInfo().queueFamilyIndex(q).queueCount(1).pQueuePriorities(priorities)};
1165 VK::DeviceQueueCreateInfo().queueFamilyIndex(q).queueCount(1).pQueuePriorities(priorities)};
1230 VK::DeviceQueueCreateInfo().queueFamilyIndex(q).queueCount(
[all...]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationInternallySynchronizedObjectsTests.cpp208 queues.addQueueFamilyIndex(queuePropertiesNdx, queueFamilyProperties[queuePropertiesNdx].queueCount);
231 const deUint32 queueCount = static_cast<deUint32>(queues.getQueues(queueFamilyIndexNdx).queues.size()); local
239 queueInfo.queueCount = queueCount;
H A DvktSynchronizationSmokeTests.cpp93 const deUint32 queueCount = 2u; local
94 const float queuePriority[queueCount] = { 1.0f, 1.0f };
101 if ((queueProps[queueNdx].queueFlags & VK_QUEUE_GRAPHICS_BIT) == VK_QUEUE_GRAPHICS_BIT && (queueProps[queueNdx].queueCount >= queueCount))
109 msg << "Cannot create device with " << queueCount << " graphics queues"; local
122 queueInfo.queueCount = queueCount;
/external/skqp/tests/
H A DVkHardwareBufferTest.cpp622 uint32_t queueCount; local
623 fVkGetPhysicalDeviceQueueFamilyProperties(fPhysDev, &queueCount, nullptr);
624 if (!queueCount) {
630 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties));
634 fVkGetPhysicalDeviceQueueFamilyProperties(fPhysDev, &queueCount, queueProps);
637 uint32_t graphicsQueueIndex = queueCount;
638 for (uint32_t i = 0; i < queueCount; i++) {
644 if (graphicsQueueIndex == queueCount) {
734 1, // queueCount
/external/mesa3d/include/vulkan/
H A Dvulkan.h1425 uint32_t queueCount; member in struct:VkQueueFamilyProperties
1452 uint32_t queueCount; member in struct:VkDeviceQueueCreateInfo
/external/skia/third_party/vulkan/vulkan/
H A Dvulkan.h1522 uint32_t queueCount; member in struct:VkQueueFamilyProperties
1549 uint32_t queueCount; member in struct:VkDeviceQueueCreateInfo
/external/skqp/third_party/vulkan/vulkan/
H A Dvulkan.h1522 uint32_t queueCount; member in struct:VkQueueFamilyProperties
1549 uint32_t queueCount; member in struct:VkDeviceQueueCreateInfo
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1718 uint32_t queueCount; member in struct:VkQueueFamilyProperties
1746 uint32_t queueCount; member in struct:VkDeviceQueueCreateInfo
H A Dvulkan.hpp7048 , queueCount( queueCount_ )
7083 queueCount = queueCount_;
7104 && ( queueCount == rhs.queueCount )
7120 uint32_t queueCount; member in struct:VULKAN_HPP_NAMESPACE::VULKAN_HPP_NAMESPACE::ImageLayout::AttachmentLoadOp::AttachmentStoreOp::ImageType::ImageTiling::ImageViewType::CommandBufferLevel::ComponentSwizzle::DescriptorType::QueryType::BorderColor::PipelineBindPoint::PipelineCacheHeaderVersion::PrimitiveTopology::SharingMode::IndexType::Filter::SamplerMipmapMode::SamplerAddressMode::CompareOp::PolygonMode::CullModeFlagBits::FrontFace::BlendFactor::BlendOp::StencilOp::LogicOp::InternalAllocationType::SystemAllocationScope::PhysicalDeviceType::VertexInputRate::Format::StructureType::DeviceQueueCreateInfo
14327 && ( queueCount == rhs.queueCount )
14338 uint32_t queueCount; member in struct:VULKAN_HPP_NAMESPACE::VULKAN_HPP_NAMESPACE::ImageLayout::AttachmentLoadOp::AttachmentStoreOp::ImageType::ImageTiling::ImageViewType::CommandBufferLevel::ComponentSwizzle::DescriptorType::QueryType::BorderColor::PipelineBindPoint::PipelineCacheHeaderVersion::PrimitiveTopology::SharingMode::IndexType::Filter::SamplerMipmapMode::SamplerAddressMode::CompareOp::PolygonMode::CullModeFlagBits::FrontFace::BlendFactor::BlendOp::StencilOp::LogicOp::InternalAllocationType::SystemAllocationScope::PhysicalDeviceType::VertexInputRate::Format::StructureType::SubpassContents::DynamicState::DescriptorUpdateTemplateTypeKHR::ObjectType::QueueFlagBits::QueueFamilyProperties
[all...]

Completed in 730 milliseconds