Home
last modified time | relevance | path

Searched refs:properties2 (Results 1 - 25 of 40) sorted by relevance

12

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkQueryUtil.hpp223 VkPhysicalDeviceProperties2 properties2; in operator ExtensionProperties() local
229 deMemset(&properties2, 0x00, sizeof(properties2)); in operator ExtensionProperties()
230 properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in operator ExtensionProperties()
231 properties2.pNext = &extensionProperties; in operator ExtensionProperties()
233 m_vki.getPhysicalDeviceProperties2(m_physicalDevice, &properties2); in operator ExtensionProperties()
240 VkPhysicalDeviceProperties2 properties2; in operator VkPhysicalDeviceProperties2() local
242 deMemset(&properties2, 0x00, sizeof(properties2)); in operator VkPhysicalDeviceProperties2()
243 properties2 in operator VkPhysicalDeviceProperties2()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DVulkanInfo.cpp224 VkPhysicalDeviceProperties2 properties2 = {}; in GatherDeviceInfo() local
225 properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in GatherDeviceInfo()
226 PNextChainBuilder propertiesChain(&properties2); in GatherDeviceInfo()
251 // If we have DeviceExt::GetPhysicalDeviceProperties2, use features2 and properties2 so in GatherDeviceInfo()
258 vkFunctions.GetPhysicalDeviceProperties2(physicalDevice, &properties2); in GatherDeviceInfo()
262 ASSERT(features2.pNext == nullptr && properties2.pNext == nullptr); in GatherDeviceInfo()
/third_party/mesa3d/src/virtio/vulkan/
H A Dvn_physical_device.c425 VkPhysicalDeviceProperties2 properties2 = { in vn_physical_device_init_properties() local
447 VN_ADD_TO_PNEXT(props->vulkan_1_1, VULKAN_1_1_PROPERTIES, properties2); in vn_physical_device_init_properties()
448 VN_ADD_TO_PNEXT(props->vulkan_1_2, VULKAN_1_2_PROPERTIES, properties2); in vn_physical_device_init_properties()
451 VN_ADD_TO_PNEXT(local_props.id, ID_PROPERTIES, properties2); in vn_physical_device_init_properties()
452 VN_ADD_TO_PNEXT(local_props.subgroup, SUBGROUP_PROPERTIES, properties2); in vn_physical_device_init_properties()
454 properties2); in vn_physical_device_init_properties()
456 properties2); in vn_physical_device_init_properties()
458 PROTECTED_MEMORY_PROPERTIES, properties2); in vn_physical_device_init_properties()
460 properties2); in vn_physical_device_init_properties()
463 VN_ADD_TO_PNEXT(local_props.driver, DRIVER_PROPERTIES, properties2); in vn_physical_device_init_properties()
1886 VkPhysicalDeviceProperties2 *properties2; vn_GetPhysicalDeviceProperties2() member
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/
H A DvktWsiDisplayTests.cpp1854 const VkDisplayProperties2KHR& properties2 = displaysProps2[displayIndex]; in testGetPhysicalDeviceDisplayProperties2KHR() local
1855 const VkDisplayPropertiesKHR& properties = properties2.displayProperties; in testGetPhysicalDeviceDisplayProperties2KHR()
1859 results.check( properties2.sType == queryStructureType, in testGetPhysicalDeviceDisplayProperties2KHR()
1860 "sType has changed to " + de::toString(properties2.sType)); in testGetPhysicalDeviceDisplayProperties2KHR()
1862 results.check( properties2.pNext == DE_NULL, in testGetPhysicalDeviceDisplayProperties2KHR()
1863 "pNext has changed to " + de::toString(properties2.pNext)); in testGetPhysicalDeviceDisplayProperties2KHR()
1871 << " for display " << displayIndex << " with properties " << properties2 in testGetPhysicalDeviceDisplayProperties2KHR()
1995 const VkDisplayPlaneProperties2KHR& properties2 = planeProps2[planeIndex]; in testGetPhysicalDeviceDisplayPlaneProperties2KHR() local
1996 const VkDisplayPlanePropertiesKHR& properties = properties2.displayPlaneProperties; in testGetPhysicalDeviceDisplayPlaneProperties2KHR()
1998 results.check( properties2 in testGetPhysicalDeviceDisplayPlaneProperties2KHR()
2230 const VkDisplayModeProperties2KHR& properties2 = modesProperties2[modeIndex]; testGetDisplayModeProperties2KHR() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/wsi/
H A DvktWsiDisplayTests.cpp1854 const VkDisplayProperties2KHR& properties2 = displaysProps2[displayIndex]; in testGetPhysicalDeviceDisplayProperties2KHR() local
1855 const VkDisplayPropertiesKHR& properties = properties2.displayProperties; in testGetPhysicalDeviceDisplayProperties2KHR()
1859 results.check( properties2.sType == queryStructureType, in testGetPhysicalDeviceDisplayProperties2KHR()
1860 "sType has changed to " + de::toString(properties2.sType)); in testGetPhysicalDeviceDisplayProperties2KHR()
1862 results.check( properties2.pNext == DE_NULL, in testGetPhysicalDeviceDisplayProperties2KHR()
1863 "pNext has changed to " + de::toString(properties2.pNext)); in testGetPhysicalDeviceDisplayProperties2KHR()
1871 << " for display " << displayIndex << " with properties " << properties2 in testGetPhysicalDeviceDisplayProperties2KHR()
1995 const VkDisplayPlaneProperties2KHR& properties2 = planeProps2[planeIndex]; in testGetPhysicalDeviceDisplayPlaneProperties2KHR() local
1996 const VkDisplayPlanePropertiesKHR& properties = properties2.displayPlaneProperties; in testGetPhysicalDeviceDisplayPlaneProperties2KHR()
1998 results.check( properties2 in testGetPhysicalDeviceDisplayPlaneProperties2KHR()
2230 const VkDisplayModeProperties2KHR& properties2 = modesProperties2[modeIndex]; testGetDisplayModeProperties2KHR() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/reconvergence/
H A DvktReconvergenceTests.cpp173 vk::VkPhysicalDeviceProperties2 properties2; in checkSupport() local
174 deMemset(&properties2, 0, sizeof(properties2)); in checkSupport()
175 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in checkSupport()
176 properties2.pNext = &subgroupProperties; in checkSupport()
178 context.getInstanceInterface().getPhysicalDeviceProperties2(context.getPhysicalDevice(), &properties2); in checkSupport()
1621 vk::VkPhysicalDeviceProperties2 properties2; in iterate() local
1622 deMemset(&properties2, 0, sizeof(properties2)); in iterate()
1623 properties2 in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/reconvergence/
H A DvktReconvergenceTests.cpp173 vk::VkPhysicalDeviceProperties2 properties2; in checkSupport() local
174 deMemset(&properties2, 0, sizeof(properties2)); in checkSupport()
175 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in checkSupport()
176 properties2.pNext = &subgroupProperties; in checkSupport()
178 context.getInstanceInterface().getPhysicalDeviceProperties2(context.getPhysicalDevice(), &properties2); in checkSupport()
1621 vk::VkPhysicalDeviceProperties2 properties2; in iterate() local
1622 deMemset(&properties2, 0, sizeof(properties2)); in iterate()
1623 properties2 in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupUniformControlFlowTests.cpp112 vk::VkPhysicalDeviceProperties2 properties2; in checkSupport() local
113 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in checkSupport()
114 properties2.pNext = &subgroupProperties; in checkSupport()
116 ctx.getInstanceInterface().getPhysicalDeviceProperties2(ctx.getPhysicalDevice(), &properties2); in checkSupport()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/
H A DvktSubgroupUniformControlFlowTests.cpp114 vk::VkPhysicalDeviceProperties2 properties2; in checkSupport() local
115 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in checkSupport()
116 properties2.pNext = &subgroupProperties; in checkSupport()
118 ctx.getInstanceInterface().getPhysicalDeviceProperties2(ctx.getPhysicalDevice(), &properties2); in checkSupport()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/
H A DvktShaderObjectApiTests.cpp216 vk::VkPhysicalDeviceProperties2 properties2 = in iterate() local
223 instanceDriver.getPhysicalDeviceProperties2(physicalDevice, &properties2); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeCooperativeMatrixTests.cpp650 vk::VkPhysicalDeviceProperties2 properties2; in iterate() local
651 deMemset(&properties2, 0, sizeof(properties2)); in iterate()
652 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in iterate()
653 properties2.pNext = &subgroupProperties; in iterate()
655 m_context.getInstanceInterface().getPhysicalDeviceProperties2(m_context.getPhysicalDevice(), &properties2); in iterate()
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Ddevice.cc741 VkPhysicalDeviceProperties2 properties2 = {}; in Initialize() local
746 properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in Initialize()
747 properties2.pNext = &subgroup_size_control_properties_; in Initialize()
770 ptrs_.vkGetPhysicalDeviceProperties2(physical_device_, &properties2); in Initialize()
/third_party/vk-gl-cts/external/amber/src/samples/
H A Dconfig_helper_vulkan.cc1119 VkPhysicalDeviceProperties2KHR properties2 = { in DumpPhysicalDeviceInfo() local
1161 properties2.pNext = &driver_properties; in DumpPhysicalDeviceInfo()
1179 vkGetPhysicalDeviceProperties2KHR(vulkan_physical_device_, &properties2); in DumpPhysicalDeviceInfo()
1182 &properties2.properties); in DumpPhysicalDeviceInfo()
1185 const VkPhysicalDeviceProperties& props = properties2.properties; in DumpPhysicalDeviceInfo()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/
H A DvktRasterizationOrderAttachmentAccessTests.cpp826 VkPhysicalDeviceProperties2 properties2 = initVulkanStructure(); in checkSupport() local
828 vki.getPhysicalDeviceProperties2(physicalDevice, &properties2); in checkSupport()
849 (properties2.properties.limits.sampledImageIntegerSampleCounts & m_sampleCount) == 0) in checkSupport()
856 if ((properties2.properties.limits.framebufferColorSampleCounts & m_sampleCount) == 0 || in checkSupport()
857 (properties2.properties.limits.sampledImageColorSampleCounts & m_sampleCount) == 0) in checkSupport()
877 if (properties2.properties.limits.maxFragmentOutputAttachments < m_inputAttachmentNum || in checkSupport()
878 properties2.properties.limits.maxPerStageDescriptorInputAttachments < m_inputAttachmentNum) in checkSupport()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/
H A DvktRasterizationOrderAttachmentAccessTests.cpp826 VkPhysicalDeviceProperties2 properties2 = initVulkanStructure(); in checkSupport() local
828 vki.getPhysicalDeviceProperties2(physicalDevice, &properties2); in checkSupport()
849 (properties2.properties.limits.sampledImageIntegerSampleCounts & m_sampleCount) == 0) in checkSupport()
856 if ((properties2.properties.limits.framebufferColorSampleCounts & m_sampleCount) == 0 || in checkSupport()
857 (properties2.properties.limits.sampledImageColorSampleCounts & m_sampleCount) == 0) in checkSupport()
877 if (properties2.properties.limits.maxFragmentOutputAttachments < m_inputAttachmentNum || in checkSupport()
878 properties2.properties.limits.maxPerStageDescriptorInputAttachments < m_inputAttachmentNum) in checkSupport()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/clipping/
H A DvktClippingTests.cpp341 VkPhysicalDeviceProperties2 properties2; in getClippingBehavior() local
345 deMemset(&properties2, 0, sizeof(properties2)); in getClippingBehavior()
347 properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in getClippingBehavior()
348 properties2.pNext = &behaviorProperties; in getClippingBehavior()
350 vk.getPhysicalDeviceProperties2(physicalDevice, &properties2); in getClippingBehavior()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/clipping/
H A DvktClippingTests.cpp341 VkPhysicalDeviceProperties2 properties2; in getClippingBehavior() local
345 deMemset(&properties2, 0, sizeof(properties2)); in getClippingBehavior()
347 properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in getClippingBehavior()
348 properties2.pNext = &behaviorProperties; in getClippingBehavior()
350 vk.getPhysicalDeviceProperties2(physicalDevice, &properties2); in getClippingBehavior()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderDerivateTests.cpp691 vk::VkPhysicalDeviceProperties2 properties2; in iterate() local
692 deMemset(&properties2, 0, sizeof(properties2)); in iterate()
693 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in iterate()
694 properties2.pNext = &subgroupProperties; in iterate()
696 m_context.getInstanceInterface().getPhysicalDeviceProperties2(m_context.getPhysicalDevice(), &properties2); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiImageCompressionControlTests.cpp144 VkImageFormatProperties2 properties2 = initVulkanStructure(&compressionPropertiesSupported); in validate() local
146 vki.getPhysicalDeviceImageFormatProperties2(physicalDevice, &formatInfo, &properties2); in validate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp1360 vk::VkPhysicalDeviceProperties2 properties2; in iterate() local
1361 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in iterate()
1362 properties2.pNext = &dsrProperties; in iterate()
1364 m_context.getInstanceInterface().getPhysicalDeviceProperties2(m_context.getPhysicalDevice(), &properties2); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp1360 vk::VkPhysicalDeviceProperties2 properties2; in iterate() local
1361 properties2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in iterate()
1362 properties2.pNext = &dsrProperties; in iterate()
1364 m_context.getInstanceInterface().getPhysicalDeviceProperties2(m_context.getPhysicalDevice(), &properties2); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageLoadStoreTests.cpp845 VkPhysicalDeviceProperties2 properties2; in getViewOffset() local
846 deMemset(&properties2, 0, sizeof(properties2)); in getViewOffset()
847 properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in getViewOffset()
848 properties2.pNext = &alignmentProperties; in getViewOffset()
850 context.getInstanceInterface().getPhysicalDeviceProperties2(context.getPhysicalDevice(), &properties2); in getViewOffset()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineShaderModuleIdentifierTests.cpp741 VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT* properties2) in getTwoShaderIdentifierProperties()
744 *properties2 = initVulkanStructure(); in getTwoShaderIdentifierProperties()
751 main.pNext = properties2; in getTwoShaderIdentifierProperties()
757 VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT properties1, properties2; in constantAlgorithmUUIDCase() local
758 getTwoShaderIdentifierProperties(context, &properties1, &properties2); in constantAlgorithmUUIDCase()
762 if (deMemCmp(properties1.shaderModuleIdentifierAlgorithmUUID, properties2.shaderModuleIdentifierAlgorithmUUID, uuidSize) != 0) in constantAlgorithmUUIDCase()
739 getTwoShaderIdentifierProperties(Context& context, VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT* properties1, VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT* properties2) getTwoShaderIdentifierProperties() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageLoadStoreTests.cpp838 VkPhysicalDeviceProperties2 properties2; in getViewOffset() local
839 deMemset(&properties2, 0, sizeof(properties2)); in getViewOffset()
840 properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in getViewOffset()
841 properties2.pNext = &alignmentProperties; in getViewOffset()
843 context.getInstanceInterface().getPhysicalDeviceProperties2(context.getPhysicalDevice(), &properties2); in getViewOffset()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineShaderModuleIdentifierTests.cpp735 VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT* properties2) in getTwoShaderIdentifierProperties()
738 *properties2 = initVulkanStructure(); in getTwoShaderIdentifierProperties()
745 main.pNext = properties2; in getTwoShaderIdentifierProperties()
751 VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT properties1, properties2; in constantAlgorithmUUIDCase() local
752 getTwoShaderIdentifierProperties(context, &properties1, &properties2); in constantAlgorithmUUIDCase()
756 if (deMemCmp(properties1.shaderModuleIdentifierAlgorithmUUID, properties2.shaderModuleIdentifierAlgorithmUUID, uuidSize) != 0) in constantAlgorithmUUIDCase()
733 getTwoShaderIdentifierProperties(Context& context, VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT* properties1, VkPhysicalDeviceShaderModuleIdentifierPropertiesEXT* properties2) getTwoShaderIdentifierProperties() argument

Completed in 62 milliseconds

12