Home
last modified time | relevance | path

Searched refs:enabledFeatures (Results 1 – 14 of 14) 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/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.cpp231 const VkPhysicalDeviceFeatures2& enabledFeatures, in createDefaultDevice() argument
240 …const deUint32 numQueues = (enabledFeatures.features.sparseBinding && (queueIndex != sparseQueu… in createDefaultDevice()
282 deviceInfo.pNext = enabledFeatures.pNext ? &enabledFeatures : DE_NULL; in createDefaultDevice()
289 deviceInfo.pEnabledFeatures = enabledFeatures.pNext ? DE_NULL : &enabledFeatures.features; in createDefaultDevice()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessUtil.cpp82 VkPhysicalDeviceFeatures enabledFeatures = context.getDeviceFeatures(); in createRobustBufferAccessDevice() local
83 enabledFeatures.robustBufferAccess = true; in createRobustBufferAccessDevice()
108 … enabledFeatures2 ? NULL : &enabledFeatures // const VkPhysicalDeviceFeatures* pEnabledFeatures; in createRobustBufferAccessDevice()
/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 instance.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createImageRobustnessDevice()
135 &enabledFeatures, // const void* pNext; in createImageRobustnessDevice()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
DvktApiDeviceInitializationTests.cpp1155 VkPhysicalDeviceFeatures2 enabledFeatures; in createDeviceFeatures2Test() local
1169 &enabledFeatures, in createDeviceFeatures2Test()
1181 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createDeviceFeatures2Test()
1182 enabledFeatures.pNext = DE_NULL; in createDeviceFeatures2Test()
1184 vki.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createDeviceFeatures2Test()
1467 VkPhysicalDeviceFeatures enabledFeatures = deviceFeatures; in createDeviceWithUnsupportedFeaturesTest() local
1468 *((VkBool32*)((deUint8*)(&enabledFeatures) + feature.offset)) = VK_TRUE; in createDeviceWithUnsupportedFeaturesTest()
1490 &enabledFeatures in createDeviceWithUnsupportedFeaturesTest()
/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.cpp684 VkPhysicalDeviceFeatures2 enabledFeatures; in createMultiViewDevices() local
685 enabledFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in createMultiViewDevices()
686 enabledFeatures.pNext = &multiviewFeatures; in createMultiViewDevices()
688 instance.getPhysicalDeviceFeatures2(physicalDevice, &enabledFeatures); in createMultiViewDevices()
726 m_hasMultiDrawIndirect = enabledFeatures.features.multiDrawIndirect; in createMultiViewDevices()
747 &enabledFeatures, //const void* pNext; 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()