Home
last modified time | relevance | path

Searched refs:fFeatures (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/tools/gpu/vk/
DVkTestHelper.cpp45 fFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in init()
46 fFeatures.pNext = nullptr; in init()
52 &fFeatures, &fDebugCallback, nullptr, in init()
112 sk_gpu_test::FreeVulkanFeaturesStructs(&fFeatures); in cleanup()
DVkTestContext.h34 return fFeatures; in getVkFeatures()
44 , fFeatures(features) in VkTestContext()
51 const VkPhysicalDeviceFeatures2* fFeatures; variable
DVkTestContext.cpp108 sk_gpu_test::FreeVulkanFeaturesStructs(fFeatures); in teardown()
109 delete fFeatures; in teardown()
DVkTestHelper.h61 VkPhysicalDeviceFeatures2 fFeatures = {}; variable
/third_party/flutter/skia/tools/gpu/vk/
DVkTestContext.h34 return fFeatures; in getVkFeatures()
44 , fFeatures(features) in VkTestContext()
51 const VkPhysicalDeviceFeatures2* fFeatures; variable
DVkTestContext.cpp236 sk_gpu_test::FreeVulkanFeaturesStructs(fFeatures); in teardown()
237 delete fFeatures; in teardown()
/third_party/flutter/skia/tests/
DVkProtectedContextTest.cpp69 VkPhysicalDeviceFeatures2* fFeatures = nullptr; member in __anon23f2f2110111::VulkanTestHelper
93 fFeatures = new VkPhysicalDeviceFeatures2; in init()
94 memset(fFeatures, 0, sizeof(VkPhysicalDeviceFeatures2)); in init()
95 fFeatures->sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in init()
96 fFeatures->pNext = nullptr; in init()
102 fFeatures, &fDebugCallback, nullptr, in init()
144 sk_gpu_test::FreeVulkanFeaturesStructs(fFeatures); in cleanup()
145 delete fFeatures; in cleanup()
DVkYcbcrSamplerTest.cpp59 VkPhysicalDeviceFeatures2 fFeatures = {}; member in VkYcbcrSamplerTestHelper
118 sk_gpu_test::FreeVulkanFeaturesStructs(&fFeatures); in ~VkYcbcrSamplerTestHelper()
136 fFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in init()
137 fFeatures.pNext = nullptr; in init()
142 if (!sk_gpu_test::CreateVkBackendContext(getProc, &fBackendContext, &fExtensions, &fFeatures, in init()
172 VkBaseOutStructure* feature = reinterpret_cast<VkBaseOutStructure*>(fFeatures.pNext); in init()
DVkHardwareBufferTest.cpp428 sk_gpu_test::FreeVulkanFeaturesStructs(fFeatures); in cleanup()
429 delete fFeatures; in cleanup()
492 VkPhysicalDeviceFeatures2* fFeatures = nullptr; member in VulkanTestHelper
520 fFeatures = new VkPhysicalDeviceFeatures2; in init()
521 memset(fFeatures, 0, sizeof(VkPhysicalDeviceFeatures2)); in init()
522 fFeatures->sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in init()
523 fFeatures->pNext = nullptr; in init()
529 fFeatures, &fDebugCallback)) { in init()
/third_party/skia/tests/
DVkHardwareBufferTest.cpp432 sk_gpu_test::FreeVulkanFeaturesStructs(fFeatures); in cleanup()
433 delete fFeatures; in cleanup()
496 VkPhysicalDeviceFeatures2* fFeatures = nullptr; member in VulkanTestHelper
524 fFeatures = new VkPhysicalDeviceFeatures2; in init()
525 memset(fFeatures, 0, sizeof(VkPhysicalDeviceFeatures2)); in init()
526 fFeatures->sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in init()
527 fFeatures->pNext = nullptr; in init()
533 fFeatures, &fDebugCallback)) { in init()
/third_party/flutter/skia/include/gpu/vk/
DGrVkBackendContext.h58 uint32_t fFeatures; // Deprecated. Use fDeviceFeatures[2] instead. member
/third_party/skia/include/gpu/vk/
DGrVkBackendContext.h58 uint32_t fFeatures; // Deprecated. Use fDeviceFeatures[2] instead. member
/third_party/flutter/engine/flutter/vulkan/
Dvulkan_window.cc139 context->fFeatures = skia_features; in CreateSkiaBackendContext()
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dvulkan_surface_producer.cc113 backend_context.fFeatures = skia_features; in Initialize()
/third_party/skia/src/gpu/vk/
DGrVkGpu.cpp153 if (backendContext.fFeatures & kGeometryShader_GrVkFeatureFlag) { in Make()
156 if (backendContext.fFeatures & kDualSrcBlend_GrVkFeatureFlag) { in Make()
159 if (backendContext.fFeatures & kSampleRateShading_GrVkFeatureFlag) { in Make()
/third_party/flutter/skia/src/gpu/vk/
DGrVkGpu.cpp195 if (backendContext.fFeatures & kGeometryShader_GrVkFeatureFlag) { in GrVkGpu()
198 if (backendContext.fFeatures & kDualSrcBlend_GrVkFeatureFlag) { in GrVkGpu()
201 if (backendContext.fFeatures & kSampleRateShading_GrVkFeatureFlag) { in GrVkGpu()
/third_party/skia/src/core/
DSkVM.cpp152 Builder::Builder() : fFeatures(detect_features()) {} in Builder()
153 Builder::Builder(Features features) : fFeatures(features ) {} in Builder()
767 if (fFeatures.fma) { in add()
781 if (fFeatures.fma) { in sub()