Home
last modified time | relevance | path

Searched refs:deviceFeatures (Results 1 – 25 of 26) sorted by relevance

12

/external/skqp/tests/
DVkPriorityExtensionTest.cpp224 VkPhysicalDeviceFeatures deviceFeatures; in DEF_GPUTEST() local
225 grVkGetPhysicalDeviceFeatures(physDev, &deviceFeatures); in DEF_GPUTEST()
229 deviceFeatures.robustBufferAccess = VK_FALSE; in DEF_GPUTEST()
263 &deviceFeatures // ppEnabledFeatures in DEF_GPUTEST()
/external/skia/tests/
DVkPriorityExtensionTest.cpp224 VkPhysicalDeviceFeatures deviceFeatures; in DEF_GPUTEST() local
225 grVkGetPhysicalDeviceFeatures(physDev, &deviceFeatures); in DEF_GPUTEST()
229 deviceFeatures.robustBufferAccess = VK_FALSE; in DEF_GPUTEST()
263 &deviceFeatures // ppEnabledFeatures in DEF_GPUTEST()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesBase.cpp176 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instanceDriver, physical… in createDeviceSupportingQueues() local
188 &deviceFeatures, // const VkPhysicalDeviceFeatures* pEnabledFeatures; in createDeviceSupportingQueues()
DvktSparseResourcesTestsUtil.cpp794 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDevice… in checkSparseSupportForImageType() local
796 if (!deviceFeatures.sparseBinding) in checkSparseSupportForImageType()
802 return deviceFeatures.sparseResidencyImage2D == VK_TRUE; in checkSparseSupportForImageType()
804 return deviceFeatures.sparseResidencyImage3D == VK_TRUE; in checkSparseSupportForImageType()
/external/skqp/tools/gpu/vk/
DVkTestUtils.cpp612 VkPhysicalDeviceFeatures* deviceFeatures = &features->features; in CreateVkBackendContext() local
621 grVkGetPhysicalDeviceFeatures(physDev, deviceFeatures); in CreateVkBackendContext()
626 deviceFeatures->robustBufferAccess = VK_FALSE; in CreateVkBackendContext()
661 pointerToFeatures ? nullptr : deviceFeatures // ppEnabledFeatures in CreateVkBackendContext()
/external/skia/tools/gpu/vk/
DVkTestUtils.cpp616 VkPhysicalDeviceFeatures* deviceFeatures = &features->features; in CreateVkBackendContext() local
625 grVkGetPhysicalDeviceFeatures(physDev, deviceFeatures); in CreateVkBackendContext()
630 deviceFeatures->robustBufferAccess = VK_FALSE; in CreateVkBackendContext()
665 pointerToFeatures ? nullptr : deviceFeatures // ppEnabledFeatures in CreateVkBackendContext()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationBasicSemaphoreTests.cpp171 VkPhysicalDeviceFeatures deviceFeatures; in basicMultiQueueCase() local
229 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures); in basicMultiQueueCase()
237 deviceInfo.pEnabledFeatures = &deviceFeatures; in basicMultiQueueCase()
DvktSynchronizationInternallySynchronizedObjectsTests.cpp200 VkPhysicalDeviceFeatures deviceFeatures; in createQueues() local
249 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures); in createQueues()
257 deviceInfo.pEnabledFeatures = &deviceFeatures; in createQueues()
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateVPTests.cpp228 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in ViewportArrayTestInstance() local
230 if (!deviceFeatures.multiViewport) in ViewportArrayTestInstance()
233 if (!deviceFeatures.geometryShader) in ViewportArrayTestInstance()
DvktDynamicStateRSTests.cpp567 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in LineWidthParamTestInstance() local
569 if (!deviceFeatures.wideLines) in LineWidthParamTestInstance()
DvktDynamicStateDSTests.cpp398 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in DepthBoundsParamTestInstance() local
400 if (!deviceFeatures.depthBounds) in DepthBoundsParamTestInstance()
/external/deqp/external/vulkancts/framework/vulkan/
DvkQueryUtil.cpp344 bool isShaderStageSupported (const VkPhysicalDeviceFeatures& deviceFeatures, VkShaderStageFlagBits … in isShaderStageSupported() argument
347 return deviceFeatures.tessellationShader == VK_TRUE; in isShaderStageSupported()
349 return deviceFeatures.geometryShader == VK_TRUE; in isShaderStageSupported()
DvkQueryUtil.hpp71 bool isShaderStageSupported (const VkPhysicalDeviceFeatures& deviceFeatures, VkShad…
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiDeviceInitializationTests.cpp947 VkPhysicalDeviceFeatures2 deviceFeatures; in createDeviceQueue2UnmatchedFlagsTest() local
948 deviceFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createDeviceQueue2UnmatchedFlagsTest()
949 deviceFeatures.pNext = &protectedFeatures; in createDeviceQueue2UnmatchedFlagsTest()
951 instanceDriver.getPhysicalDeviceFeatures2(physicalDevice, &deviceFeatures); in createDeviceQueue2UnmatchedFlagsTest()
981 const VkPhysicalDeviceFeatures2 deviceFeatures = in createDeviceQueue2UnmatchedFlagsTest() local
991 &deviceFeatures, // const void* pNext; in createDeviceQueue2UnmatchedFlagsTest()
DvktApiFeatureInfo.cpp1008 tcu::TestStatus deviceFeatures (Context& context) in deviceFeatures() function
2383 VkImageCreateFlags getValidImageCreateFlags (const VkPhysicalDeviceFeatures& deviceFeatures, VkForm… in getValidImageCreateFlags() argument
2406 if (deviceFeatures.sparseBinding) in getValidImageCreateFlags()
2409 if (deviceFeatures.sparseResidencyAliased) in getValidImageCreateFlags()
2421 bool isRequiredImageParameterCombination (const VkPhysicalDeviceFeatures& deviceFeatures, in isRequiredImageParameterCombination() argument
2429 DE_UNREF(deviceFeatures); in isRequiredImageParameterCombination()
2450 …DE_ASSERT(deviceFeatures.sparseBinding || (createFlags & (VK_IMAGE_CREATE_SPARSE_BINDING_BIT|VK_IM… in isRequiredImageParameterCombination()
2451 …DE_ASSERT(deviceFeatures.sparseResidencyAliased || (createFlags & VK_IMAGE_CREATE_SPARSE_ALIASED_B… in isRequiredImageParameterCombination()
2470 return (deviceFeatures.sparseResidencyImage2D == VK_TRUE); in isRequiredImageParameterCombination()
2472 return (deviceFeatures.sparseResidencyImage3D == VK_TRUE); in isRequiredImageParameterCombination()
[all …]
DvktApiBufferTests.cpp195 deviceFeatures = getPhysicalDeviceFeatures(vk, physicalDevice); in createSparseContext() local
218 &deviceFeatures in createSparseContext()
DvktApiExternalMemoryTests.cpp2684 …const vk::VkPhysicalDeviceFeatures deviceFeatures (vk::getPhysicalDeviceFeatures(vki, physicalDev… in testBufferQueries() local
2715 (deviceFeatures.sparseBinding == VK_FALSE)) in testBufferQueries()
2719 (deviceFeatures.sparseResidencyAliased == VK_FALSE)) in testBufferQueries()
2723 (deviceFeatures.sparseResidencyBuffer == VK_FALSE)) in testBufferQueries()
3507 …const vk::VkPhysicalDeviceFeatures deviceFeatures (vk::getPhysicalDeviceFeatures(vki, physicalDev… in testImageQueries() local
3562 (deviceFeatures.sparseBinding == VK_FALSE)) in testImageQueries()
3566 (deviceFeatures.sparseResidencyImage2D == VK_FALSE)) in testImageQueries()
3570 (deviceFeatures.sparseResidencyAliased == VK_FALSE)) in testImageQueries()
3905 vk::VkPhysicalDeviceFeatures2 deviceFeatures; in testAndroidHardwareBufferImageFormat() local
3906 deviceFeatures.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in testAndroidHardwareBufferImageFormat()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktOpaqueTypeIndexingTests.cpp253 const VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in checkSupported() local
260 if (!deviceFeatures.shaderSampledImageArrayDynamicIndexing) in checkSupported()
265 if (!deviceFeatures.shaderUniformBufferArrayDynamicIndexing) in checkSupported()
270 if (!deviceFeatures.shaderStorageBufferArrayDynamicIndexing) in checkSupported()
1535 const VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in iterate() local
1544 if(!deviceFeatures.vertexPipelineStoresAndAtomics) in iterate()
1548 if(!deviceFeatures.fragmentStoresAndAtomics) in iterate()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTests.cpp1382 VkPhysicalDeviceFeatures deviceFeatures; in MinSampleShadingInstance() local
1384 …t.getInstanceInterface().getPhysicalDeviceFeatures(m_context.getPhysicalDevice(), &deviceFeatures); in MinSampleShadingInstance()
1386 if (!deviceFeatures.sampleRateShading) in MinSampleShadingInstance()
1668 VkPhysicalDeviceFeatures deviceFeatures; in AlphaToOneInstance() local
1670 …ext.getInstanceInterface().getPhysicalDeviceFeatures(context.getPhysicalDevice(), &deviceFeatures); in AlphaToOneInstance()
1672 if (!deviceFeatures.alphaToOne) in AlphaToOneInstance()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryAllocationTests.cpp182 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instanceDriver, dev… in createDeviceGroup() local
212 &deviceFeatures, // const VkPhysicalDeviceFeatures* pEnabledFeatures; in createDeviceGroup()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRender.cpp1192 …const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDevice… in checkSparseSupport() local
1197 if (!deviceFeatures.shaderResourceResidency) in checkSparseSupport()
1200 if (!deviceFeatures.sparseBinding) in checkSparseSupport()
1203 if (imageInfo.imageType == VK_IMAGE_TYPE_2D && !deviceFeatures.sparseResidencyImage2D) in checkSparseSupport()
1206 if (imageInfo.imageType == VK_IMAGE_TYPE_3D && !deviceFeatures.sparseResidencyImage3D) in checkSparseSupport()
DvktShaderRenderTextureGatherTests.cpp1170 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures(); in init() local
1171 if (!deviceFeatures.shaderImageGatherExtended) in init()
DvktShaderRenderTextureFunctionTests.cpp711 const vk::VkPhysicalDeviceFeatures& deviceFeatures = context.getDeviceFeatures(); in checkDeviceFeatures() local
713 if (!deviceFeatures.imageCubeArray) in checkDeviceFeatures()
758 const vk::VkPhysicalDeviceFeatures& deviceFeatures = context.getDeviceFeatures(); in ShaderTextureFunctionInstance() local
760 if (!deviceFeatures.shaderResourceMinLod) in ShaderTextureFunctionInstance()
2921 const vk::VkPhysicalDeviceFeatures& deviceFeatures = context.getDeviceFeatures(); in SparseShaderTextureFunctionInstance() local
2923 if (!deviceFeatures.shaderResourceMinLod) in SparseShaderTextureFunctionInstance()
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
DvktBindingShaderAccessTests.cpp167 const vk::VkPhysicalDeviceFeatures& deviceFeatures, in verifyDriverSupport() argument
244 if (!deviceFeatures.vertexPipelineStoresAndAtomics) in verifyDriverSupport()
250 if (!deviceFeatures.fragmentStoresAndAtomics) in verifyDriverSupport()
259 if (viewType == vk::VK_IMAGE_VIEW_TYPE_CUBE_ARRAY && !deviceFeatures.imageCubeArray) in verifyDriverSupport()
720 const vk::VkPhysicalDeviceFeatures& deviceFeatures,
730 const vk::VkPhysicalDeviceFeatures& deviceFeatures,
748 const vk::VkPhysicalDeviceFeatures& deviceFeatures, in RenderInstanceShaders() argument
751 …addStage(vki, device, deviceFeatures, programCollection, "vertex", vk::VK_SHADER_STAGE_VERTEX_BIT… in RenderInstanceShaders()
752 …addStage(vki, device, deviceFeatures, programCollection, "tess_ctrl", vk::VK_SHADER_STAGE_TESSELLA… in RenderInstanceShaders()
753 …addStage(vki, device, deviceFeatures, programCollection, "tess_eval", vk::VK_SHADER_STAGE_TESSELLA… in RenderInstanceShaders()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/rasterization/
DvktRasterizationTests.cpp1909 const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(vk, physicalDevice); in iterate() local
1911 …if (!(deviceFeatures.fillModeNonSolid) && (m_polygonMode == VK_POLYGON_MODE_LINE || m_polygonMode … in iterate()

12