HomeSort by relevance Sort by last modified time
    Searched refs:deviceFeatures (Results 1 - 22 of 22) sorted by null

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
ImsResolverTest.java 236 Set<String> deviceFeatures = new HashSet<>();
237 deviceFeatures.add(ImsResolver.METADATA_EMERGENCY_MMTEL_FEATURE);
238 deviceFeatures.add(ImsResolver.METADATA_MMTEL_FEATURE);
239 deviceFeatures.add(ImsResolver.METADATA_RCS_FEATURE);
247 info.add(getResolveInfo(TEST_DEVICE_DEFAULT_NAME, deviceFeatures, true));
266 HashSet<Pair<Integer, Integer>> deviceFeatureSet = convertToHashSet(deviceFeatures, 0);
371 Set<String> deviceFeatures = new HashSet<>();
372 deviceFeatures.add(ImsResolver.METADATA_EMERGENCY_MMTEL_FEATURE);
373 deviceFeatures.add(ImsResolver.METADATA_MMTEL_FEATURE);
381 info.add(getResolveInfo(TEST_DEVICE_DEFAULT_NAME, deviceFeatures, true))
    [all...]
  /external/skia/src/gpu/vk/
GrVkBackendContext.cpp 192 VkPhysicalDeviceFeatures deviceFeatures;
193 vkGetPhysicalDeviceFeatures(physDev, &deviceFeatures);
196 deviceFeatures.robustBufferAccess = VK_FALSE;
199 if (deviceFeatures.geometryShader) {
202 if (deviceFeatures.dualSrcBlend) {
205 if (deviceFeatures.sampleRateShading) {
242 &deviceFeatures // ppEnabledFeatures
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBase.cpp 142 const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDevice);
154 &deviceFeatures, // const VkPhysicalDeviceFeatures* pEnabledFeatures;
vktSparseResourcesTestsUtil.cpp 914 const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(instance, physicalDevice);
916 if (!deviceFeatures.sparseBinding)
922 return deviceFeatures.sparseResidencyImage2D == VK_TRUE;
924 return deviceFeatures.sparseResidencyImage3D == VK_TRUE;
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkQueryUtil.cpp 240 bool isShaderStageSupported (const VkPhysicalDeviceFeatures& deviceFeatures, VkShaderStageFlagBits stage)
243 return deviceFeatures.tessellationShader == VK_TRUE;
245 return deviceFeatures.geometryShader == VK_TRUE;
vkQueryUtil.hpp 57 bool isShaderStageSupported (const VkPhysicalDeviceFeatures& deviceFeatures, VkShaderStageFlagBits stage);
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestCase.cpp 216 static VkPhysicalDeviceFeatures filterDefaultDeviceFeatures (const VkPhysicalDeviceFeatures& deviceFeatures);
258 VkPhysicalDeviceFeatures DefaultDevice::filterDefaultDeviceFeatures (const VkPhysicalDeviceFeatures& deviceFeatures)
260 VkPhysicalDeviceFeatures enabledDeviceFeatures = deviceFeatures;
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateVPTests.cpp 240 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures();
242 if (!deviceFeatures.multiViewport)
245 if (!deviceFeatures.geometryShader)
vktDynamicStateRSTests.cpp 608 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures();
610 if (!deviceFeatures.wideLines)
vktDynamicStateDSTests.cpp 417 const vk::VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures();
419 if (!deviceFeatures.depthBounds)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationBasicSemaphoreTests.cpp 130 VkPhysicalDeviceFeatures deviceFeatures;
200 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures);
208 deviceInfo.pEnabledFeatures = &deviceFeatures;
vktSynchronizationInternallySynchronizedObjectsTests.cpp 197 VkPhysicalDeviceFeatures deviceFeatures;
246 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures);
254 deviceInfo.pEnabledFeatures = &deviceFeatures;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
ImsResolver.java 566 Set<Integer> deviceFeatures = new HashSet<>(info.supportedFeatures);
567 deviceFeatures.removeAll(carrierImsInfo.supportedFeatures);
568 imsFeaturesBySlot.addAll(deviceFeatures.stream().map(
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferTests.cpp 142 const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(vk, physicalDevice);
168 deviceInfo.pEnabledFeatures = &deviceFeatures;
vktApiFeatureInfo.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp 628 const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(vk, physicalDevice);
652 deviceInfo.pEnabledFeatures = &deviceFeatures;
    [all...]
vktShaderRenderTextureGatherTests.cpp     [all...]
vktShaderRenderTextureFunctionTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktOpaqueTypeIndexingTests.cpp 251 const VkPhysicalDeviceFeatures& deviceFeatures = m_context.getDeviceFeatures();
258 if (!deviceFeatures.shaderSampledImageArrayDynamicIndexing)
263 if (!deviceFeatures.shaderUniformBufferArrayDynamicIndexing)
268 if (!deviceFeatures.shaderStorageBufferArrayDynamicIndexing)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/binding_model/
vktBindingShaderAccessTests.cpp 164 void verifyDriverSupport(const vk::VkPhysicalDeviceFeatures& deviceFeatures,
239 if (!deviceFeatures.vertexPipelineStoresAndAtomics)
245 if (!deviceFeatures.fragmentStoresAndAtomics)
915 const vk::VkPhysicalDeviceFeatures& deviceFeatures,
925 const vk::VkPhysicalDeviceFeatures& deviceFeatures,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/rasterization/
vktRasterizationTests.cpp     [all...]

Completed in 1095 milliseconds