Home
last modified time | relevance | path

Searched refs:enabledFeatures (Results 1 – 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuANGLENativeDisplayFactory.cpp431 const char **enabledFeatures = in ANGLENativeDisplayFactory() local
433 DE_ASSERT(enabledFeatures != nullptr && *enabledFeatures != nullptr); in ANGLENativeDisplayFactory()
435 for (; *enabledFeatures; ++enabledFeatures) in ANGLENativeDisplayFactory()
437 if (strcmp(enabledFeatures[0], "emulatedPrerotation90") == 0) in ANGLENativeDisplayFactory()
441 else if (strcmp(enabledFeatures[0], "emulatedPrerotation180") == 0) in ANGLENativeDisplayFactory()
445 else if (strcmp(enabledFeatures[0], "emulatedPrerotation270") == 0) in ANGLENativeDisplayFactory()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DFeatureTests.cpp77 std::vector<const char*> enabledFeatures = deviceBase->GetEnabledFeatures(); in TEST_F() local
78 ASSERT_EQ(1u, enabledFeatures.size()); in TEST_F()
79 ASSERT_EQ(0, std::strcmp(featureName, enabledFeatures[0])); in TEST_F()
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_KHR_get_physical_device_properties2.txt77 VkPhysicalDeviceFeatures2KHR enabledFeatures =
83 enabledFeatures.features.xyz = VK_TRUE;
89 &enabledFeatures, // pNext
DVK_KHR_get_physical_device_properties2.adoc77 VkPhysicalDeviceFeatures2KHR enabledFeatures =
83 enabledFeatures.features.xyz = VK_TRUE;
89 &enabledFeatures, // pNext
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkDevice.hpp54 …mem, PhysicalDevice *physicalDevice, const VkPhysicalDeviceFeatures *enabledFeatures, const std::s…
70 const VkPhysicalDeviceFeatures &getEnabledFeatures() const { return enabledFeatures; } in getEnabledFeatures()
190 const VkPhysicalDeviceFeatures enabledFeatures = {}; member in vk::Device
DVkDevice.cpp118 …mem, PhysicalDevice *physicalDevice, const VkPhysicalDeviceFeatures *enabledFeatures, const std::s… in Device() argument
122 …, enabledFeatures(enabledFeatures ? *enabledFeatures : VkPhysicalDeviceFeatures{}) // "Setting pE… in Device()
DlibVulkan.cpp708 const VkPhysicalDeviceFeatures *enabledFeatures = pCreateInfo->pEnabledFeatures; in vkCreateDevice() local
730 enabledFeatures = &physicalDeviceFeatures2->features; in vkCreateDevice()
954 if(enabledFeatures) in vkCreateDevice()
956 if(!vk::Cast(physicalDevice)->hasFeatures(*enabledFeatures)) in vkCreateDevice()
984 …ce::Create(pAllocator, pCreateInfo, pDevice, vk::Cast(physicalDevice), enabledFeatures, scheduler); in vkCreateDevice()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DRendererVk.cpp951 VkPhysicalDeviceFeatures2KHR enabledFeatures = {}; in initializeDevice() local
952 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in initializeDevice()
953 enabledFeatures.features.independentBlend = mPhysicalDeviceFeatures.independentBlend; in initializeDevice()
954 enabledFeatures.features.robustBufferAccess = mPhysicalDeviceFeatures.robustBufferAccess; in initializeDevice()
955 enabledFeatures.features.samplerAnisotropy = mPhysicalDeviceFeatures.samplerAnisotropy; in initializeDevice()
956 enabledFeatures.features.vertexPipelineStoresAndAtomics = in initializeDevice()
958 enabledFeatures.features.fragmentStoresAndAtomics = in initializeDevice()
962 enabledFeatures.features.inheritedQueries = mPhysicalDeviceFeatures.inheritedQueries; in initializeDevice()
991 enabledFeatures.pNext = &divisorFeatures; in initializeDevice()
1004 createInfo.pNext = &enabledFeatures; in initializeDevice()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
DvktTestCase.cpp257 const VkPhysicalDeviceFeatures2& enabledFeatures, in createDefaultDevice() argument
267 …const deUint32 numQueues = (enabledFeatures.features.sparseBinding && (queueIndex != sparseQueu… in createDefaultDevice()
309 deviceInfo.pNext = enabledFeatures.pNext ? &enabledFeatures : DE_NULL; in createDefaultDevice()
316 deviceInfo.pEnabledFeatures = enabledFeatures.pNext ? DE_NULL : &enabledFeatures.features; in createDefaultDevice()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/
DvktTestCase.cpp257 const VkPhysicalDeviceFeatures2& enabledFeatures, in createDefaultDevice() argument
267 …const deUint32 numQueues = (enabledFeatures.features.sparseBinding && (queueIndex != sparseQueu… in createDefaultDevice()
309 deviceInfo.pNext = enabledFeatures.pNext ? &enabledFeatures : DE_NULL; in createDefaultDevice()
316 deviceInfo.pEnabledFeatures = enabledFeatures.pNext ? DE_NULL : &enabledFeatures.features; in createDefaultDevice()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/
DvktRobustnessUtil.cpp84 VkPhysicalDeviceFeatures enabledFeatures = context.getDeviceFeatures(); in createRobustBufferAccessDevice() local
85 enabledFeatures.robustBufferAccess = true; in createRobustBufferAccessDevice()
148 enabledFeatures2 ? NULL : &enabledFeatures // const VkPhysicalDeviceFeatures* pEnabledFeatures; in createRobustBufferAccessDevice()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessUtil.cpp84 VkPhysicalDeviceFeatures enabledFeatures = context.getDeviceFeatures(); in createRobustBufferAccessDevice() local
85 enabledFeatures.robustBufferAccess = true; in createRobustBufferAccessDevice()
148 enabledFeatures2 ? NULL : &enabledFeatures // const VkPhysicalDeviceFeatures* pEnabledFeatures; in createRobustBufferAccessDevice()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/
DvktFragmentShadingRatePixelConsistency.cpp126 VkPhysicalDeviceFeatures2 enabledFeatures; in createImageRobustnessDevice() local
127 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createImageRobustnessDevice()
128 enabledFeatures.pNext = &fsrFeatures; in createImageRobustnessDevice()
130 vki.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createImageRobustnessDevice()
135 &enabledFeatures, // const void* pNext; in createImageRobustnessDevice()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/
DvktFragmentShadingRatePixelConsistency.cpp126 VkPhysicalDeviceFeatures2 enabledFeatures; in createImageRobustnessDevice() local
127 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createImageRobustnessDevice()
128 enabledFeatures.pNext = &fsrFeatures; in createImageRobustnessDevice()
130 vki.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createImageRobustnessDevice()
135 &enabledFeatures, // const void* pNext; in createImageRobustnessDevice()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
DvktApiDeviceInitializationTests.cpp1324 VkPhysicalDeviceFeatures2 enabledFeatures; in createDeviceFeatures2Test() local
1335 void* pNext = &enabledFeatures; in createDeviceFeatures2Test()
1361 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createDeviceFeatures2Test()
1362 enabledFeatures.pNext = DE_NULL; in createDeviceFeatures2Test()
1364 vki.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createDeviceFeatures2Test()
1682 VkPhysicalDeviceFeatures enabledFeatures = deviceFeatures; in createDeviceWithUnsupportedFeaturesTest() local
1683 *((VkBool32*)((deUint8*)(&enabledFeatures) + feature.offset)) = VK_TRUE; in createDeviceWithUnsupportedFeaturesTest()
1717 &enabledFeatures in createDeviceWithUnsupportedFeaturesTest()
DvktApiObjectManagementTests.cpp683 VkPhysicalDeviceFeatures enabledFeatures = getPhysicalDeviceFeatures(res.vki, res.physicalDevice); in create() local
696 &enabledFeatures, // pEnabledFeatures in create()
844 …VkPhysicalDeviceFeatures enabledFeatures = getPhysicalDeviceFeatures(res.vki, res.physicalDevices[… in create() local
857 &enabledFeatures, // pEnabledFeatures in create()
2611 …VkPhysicalDeviceFeatures enabledFeatures = getPhysicalDeviceFeatures(context.getInstanceInterface(… in createPrivateDataDevice() local
2624 &enabledFeatures, // pEnabledFeatures in createPrivateDataDevice()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
DvktApiDeviceInitializationTests.cpp1324 VkPhysicalDeviceFeatures2 enabledFeatures; in createDeviceFeatures2Test() local
1335 void* pNext = &enabledFeatures; in createDeviceFeatures2Test()
1361 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createDeviceFeatures2Test()
1362 enabledFeatures.pNext = DE_NULL; in createDeviceFeatures2Test()
1364 vki.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createDeviceFeatures2Test()
1682 VkPhysicalDeviceFeatures enabledFeatures = deviceFeatures; in createDeviceWithUnsupportedFeaturesTest() local
1683 *((VkBool32*)((deUint8*)(&enabledFeatures) + feature.offset)) = VK_TRUE; in createDeviceWithUnsupportedFeaturesTest()
1717 &enabledFeatures in createDeviceWithUnsupportedFeaturesTest()
DvktApiObjectManagementTests.cpp683 VkPhysicalDeviceFeatures enabledFeatures = getPhysicalDeviceFeatures(res.vki, res.physicalDevice); in create() local
696 &enabledFeatures, // pEnabledFeatures in create()
844 …VkPhysicalDeviceFeatures enabledFeatures = getPhysicalDeviceFeatures(res.vki, res.physicalDevices[… in create() local
857 &enabledFeatures, // pEnabledFeatures in create()
2611 …VkPhysicalDeviceFeatures enabledFeatures = getPhysicalDeviceFeatures(context.getInstanceInterface(… in createPrivateDataDevice() local
2624 &enabledFeatures, // pEnabledFeatures in createPrivateDataDevice()
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
DvksServices.cpp51 const vk::VkPhysicalDeviceFeatures2& enabledFeatures; member
/third_party/flutter/flutter/packages/flutter_tools/lib/src/reporting/
Dusage.dart192 final String enabledFeatures = allFeatures
199 _analytics.setSessionValue(cdKey(CustomDimensions.enabledFlutterFeatures), enabledFeatures);
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLPreRotationTest.cpp108 std::vector<const char *> enabledFeatures; in initializeDisplay() local
112 enabledFeatures.push_back("enablePreRotateSurfaces"); in initializeDisplay()
118 enabledFeatures.push_back(nullptr); in initializeDisplay()
131 displayAttributes.push_back(reinterpret_cast<EGLAttrib>(enabledFeatures.data())); in initializeDisplay()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/
DvktMultiViewRenderTests.cpp772 VkPhysicalDeviceFeatures2 enabledFeatures; in createMultiViewDevices() local
773 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createMultiViewDevices()
774 enabledFeatures.pNext = &multiviewFeatures; in createMultiViewDevices()
776 instanceDriver.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createMultiViewDevices()
812 m_hasMultiDrawIndirect = enabledFeatures.features.multiDrawIndirect; in createMultiViewDevices()
830 void* pNext = &enabledFeatures; in createMultiViewDevices()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/multiview/
DvktMultiViewRenderTests.cpp772 VkPhysicalDeviceFeatures2 enabledFeatures; in createMultiViewDevices() local
773 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createMultiViewDevices()
774 enabledFeatures.pNext = &multiviewFeatures; in createMultiViewDevices()
776 instanceDriver.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createMultiViewDevices()
812 m_hasMultiDrawIndirect = enabledFeatures.features.multiDrawIndirect; in createMultiViewDevices()
830 void* pNext = &enabledFeatures; in createMultiViewDevices()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DRendererVk.cpp1299 VkValidationFeatureEnableEXT enabledFeatures[] = { in initialize() local
1304 validationFeatures.pEnabledValidationFeatures = enabledFeatures; in initialize()