HomeSort by relevance Sort by last modified time
    Searched refs:pEnabledFeatures (Results 1 - 25 of 44) sorted by null

1 2

  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/generated/include/
parameter_validation.h 257 if (pCreateInfo->pEnabledFeatures != NULL)
259 skipCall |= validate_bool32(report_data, "vkCreateDevice", "pCreateInfo->pEnabledFeatures->robustBufferAccess", pCreateInfo->pEnabledFeatures->robustBufferAccess);
261 skipCall |= validate_bool32(report_data, "vkCreateDevice", "pCreateInfo->pEnabledFeatures->fullDrawIndexUint32", pCreateInfo->pEnabledFeatures->fullDrawIndexUint32);
263 skipCall |= validate_bool32(report_data, "vkCreateDevice", "pCreateInfo->pEnabledFeatures->imageCubeArray", pCreateInfo->pEnabledFeatures->imageCubeArray);
265 skipCall |= validate_bool32(report_data, "vkCreateDevice", "pCreateInfo->pEnabledFeatures->independentBlend", pCreateInfo->pEnabledFeatures->independentBlend);
267 skipCall |= validate_bool32(report_data, "vkCreateDevice", "pCreateInfo->pEnabledFeatures->geometryShader", pCreateInfo->pEnabledFeatures->geometryShader)
    [all...]
vk_safe_struct.cpp 274 pEnabledFeatures(nullptr)
282 if (pInStruct->pEnabledFeatures) {
283 pEnabledFeatures = new VkPhysicalDeviceFeatures(*pInStruct->pEnabledFeatures);
289 pEnabledFeatures(nullptr)
303 pEnabledFeatures = nullptr;
310 if (src.pEnabledFeatures) {
311 pEnabledFeatures = new VkPhysicalDeviceFeatures(*src.pEnabledFeatures);
319 if (pEnabledFeatures)
    [all...]
vk_struct_validate_helper.h 466 if (pStruct->pEnabledFeatures && !vk_validate_vkphysicaldevicefeatures((const VkPhysicalDeviceFeatures*)pStruct->pEnabledFeatures))
    [all...]
vk_struct_size_helper.c 374 structSize += vk_size_vkphysicaldevicefeatures(pStruct->pEnabledFeatures);
    [all...]
vk_safe_struct.h 110 const VkPhysicalDeviceFeatures* pEnabledFeatures;
    [all...]
vk_struct_string_helper.h     [all...]
vk_struct_wrappers.cpp     [all...]
vk_struct_string_helper_cpp.h     [all...]
vk_struct_string_helper_no_addr_cpp.h     [all...]
  /frameworks/rs/rsov/driver/
rsovContext.cpp 90 .pEnabledFeatures = nullptr,
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
loader_validation_tests.cpp 174 nullptr // pEnabledFeatures
231 DeviceCreateInfo &pEnabledFeatures(VkPhysicalDeviceFeatures const *const pEnabledFeatures) {
232 info.pEnabledFeatures = pEnabledFeatures;
vktestbinding.cpp 285 dev_info.pEnabledFeatures = features;
289 dev_info.pEnabledFeatures = &all_features;
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationBasicSemaphoreTests.cpp 184 deviceInfo.pEnabledFeatures = &deviceFeatures;
vktSynchronizationInternallySynchronizedObjectsTests.cpp 254 deviceInfo.pEnabledFeatures = &deviceFeatures;
    [all...]
vktSynchronizationSmokeTests.cpp 135 deviceInfo.pEnabledFeatures = &physicalDeviceFeatures;
    [all...]
  /external/vulkan-validation-layers/tests/
loader_validation_tests.cpp 181 nullptr // pEnabledFeatures
238 DeviceCreateInfo &pEnabledFeatures(VkPhysicalDeviceFeatures const *const pEnabledFeatures) {
239 info.pEnabledFeatures = pEnabledFeatures;
    [all...]
vktestbinding.cpp 282 dev_info.pEnabledFeatures = features;
286 dev_info.pEnabledFeatures = &all_features;
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestCase.cpp 283 deviceInfo.pEnabledFeatures = enabledFeatures.pNext ? DE_NULL : &enabledFeatures.features;
  /external/vulkan-validation-layers/demos/smoke/
Shell.cpp 270 dev_info.pEnabledFeatures = &features;
  /external/mesa3d/src/intel/vulkan/
anv_device.c     [all...]
  /cts/tests/tests/graphics/jni/
VulkanPreTransformTestHelpers.cpp 226 .pEnabledFeatures = nullptr,
    [all...]
VulkanTestHelpers.cpp 147 .pEnabledFeatures = nullptr,
    [all...]
  /frameworks/native/vulkan/tools/
vkinfo.cpp 202 .pEnabledFeatures = &info.features,
  /external/deqp/external/vulkancts/framework/vulkan/
vkStructTypes.inl 300 const VkPhysicalDeviceFeatures* pEnabledFeatures;
    [all...]
  /external/vulkan-validation-layers/layers/
parameter_validation_utils.cpp 356 if (pCreateInfo->pNext != NULL && pCreateInfo->pEnabledFeatures) {
360 // Cannot include VkPhysicalDeviceFeatures2KHR and have non-null pEnabledFeatures
364 "pCreateInfo->pEnabledFeatures is non-NULL.");
472 // The enabled features can come from either pEnabledFeatures, or from the pNext chain
473 const VkPhysicalDeviceFeatures *enabled_features_found = pCreateInfo->pEnabledFeatures;
    [all...]

Completed in 448 milliseconds

1 2