Home
last modified time | relevance | path

Searched refs:VK_TRUE (Results 1 - 25 of 399) sorted by relevance

12345678910>>...16

/third_party/vk-gl-cts/external/amber/src/samples/
H A Dconfig_helper_vulkan.cc107 features->robustBufferAccess = VK_TRUE; in NamesToVulkanFeatures()
109 features->fullDrawIndexUint32 = VK_TRUE; in NamesToVulkanFeatures()
111 features->imageCubeArray = VK_TRUE; in NamesToVulkanFeatures()
113 features->independentBlend = VK_TRUE; in NamesToVulkanFeatures()
115 features->geometryShader = VK_TRUE; in NamesToVulkanFeatures()
117 features->tessellationShader = VK_TRUE; in NamesToVulkanFeatures()
119 features->sampleRateShading = VK_TRUE; in NamesToVulkanFeatures()
121 features->dualSrcBlend = VK_TRUE; in NamesToVulkanFeatures()
123 features->logicOp = VK_TRUE; in NamesToVulkanFeatures()
125 features->multiDrawIndirect = VK_TRUE; in NamesToVulkanFeatures()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkPhysicalDevice.cpp38 VK_TRUE, // robustBufferAccess in getFeatures()
39 VK_TRUE, // fullDrawIndexUint32 in getFeatures()
40 VK_TRUE, // imageCubeArray in getFeatures()
41 VK_TRUE, // independentBlend in getFeatures()
44 VK_TRUE, // sampleRateShading in getFeatures()
47 VK_TRUE, // multiDrawIndirect in getFeatures()
48 VK_TRUE, // drawIndirectFirstInstance in getFeatures()
49 VK_TRUE, // depthClamp in getFeatures()
50 VK_TRUE, // depthBiasClamp in getFeatures()
51 VK_TRUE, // fillModeNonSoli in getFeatures()
[all...]
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Ddevice.cc576 vulkan11_ptrs->variablePointers != VK_TRUE) { in Initialize()
580 vulkan11_ptrs->variablePointersStorageBuffer != VK_TRUE) { in Initialize()
585 vulkan11_ptrs->storageBuffer16BitAccess != VK_TRUE) { in Initialize()
589 vulkan11_ptrs->uniformAndStorageBuffer16BitAccess != VK_TRUE) { in Initialize()
593 vulkan11_ptrs->storagePushConstant16 != VK_TRUE) { in Initialize()
597 vulkan11_ptrs->storageInputOutput16 != VK_TRUE) { in Initialize()
604 var_ptrs->variablePointers != VK_TRUE) { in Initialize()
608 var_ptrs->variablePointersStorageBuffer != VK_TRUE) { in Initialize()
613 storage16_ptrs->storageBuffer16BitAccess != VK_TRUE) { in Initialize()
617 storage16_ptrs->uniformAndStorageBuffer16BitAccess != VK_TRUE) { in Initialize()
[all...]
H A Dsampler.cc103 (sampler->GetNormalizedCoords() ? VK_FALSE : VK_TRUE); in CreateSampler()
105 (sampler->GetCompareEnable() ? VK_TRUE : VK_FALSE); in CreateSampler()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkNullDriver.cpp909 pFeatures->robustBufferAccess = VK_TRUE; in getPhysicalDeviceFeatures()
910 pFeatures->fullDrawIndexUint32 = VK_TRUE; in getPhysicalDeviceFeatures()
911 pFeatures->imageCubeArray = VK_TRUE; in getPhysicalDeviceFeatures()
912 pFeatures->independentBlend = VK_TRUE; in getPhysicalDeviceFeatures()
913 pFeatures->geometryShader = VK_TRUE; in getPhysicalDeviceFeatures()
914 pFeatures->tessellationShader = VK_TRUE; in getPhysicalDeviceFeatures()
915 pFeatures->sampleRateShading = VK_TRUE; in getPhysicalDeviceFeatures()
916 pFeatures->dualSrcBlend = VK_TRUE; in getPhysicalDeviceFeatures()
917 pFeatures->logicOp = VK_TRUE; in getPhysicalDeviceFeatures()
918 pFeatures->multiDrawIndirect = VK_TRUE; in getPhysicalDeviceFeatures()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DDeviceVk.cpp326 usedKnobs.features.depthBiasClamp = VK_TRUE; in CreateDevice()
327 usedKnobs.features.fragmentStoresAndAtomics = VK_TRUE; in CreateDevice()
328 usedKnobs.features.fullDrawIndexUint32 = VK_TRUE; in CreateDevice()
329 usedKnobs.features.imageCubeArray = VK_TRUE; in CreateDevice()
330 usedKnobs.features.independentBlend = VK_TRUE; in CreateDevice()
331 usedKnobs.features.sampleRateShading = VK_TRUE; in CreateDevice()
334 usedKnobs.features.robustBufferAccess = VK_TRUE; in CreateDevice()
347 if (mDeviceInfo.features.samplerAnisotropy == VK_TRUE) { in CreateDevice()
348 usedKnobs.features.samplerAnisotropy = VK_TRUE; in CreateDevice()
353 VK_TRUE); in CreateDevice()
[all...]
H A DAdapterVk.cpp130 if (mDeviceInfo.features.textureCompressionBC == VK_TRUE) { in InitializeSupportedFeaturesImpl()
134 if (mDeviceInfo.features.textureCompressionETC2 == VK_TRUE) { in InitializeSupportedFeaturesImpl()
138 if (mDeviceInfo.features.textureCompressionASTC_LDR == VK_TRUE) { in InitializeSupportedFeaturesImpl()
142 if (mDeviceInfo.features.pipelineStatisticsQuery == VK_TRUE) { in InitializeSupportedFeaturesImpl()
146 if (mDeviceInfo.features.depthClamp == VK_TRUE) { in InitializeSupportedFeaturesImpl()
150 if (mDeviceInfo.properties.limits.timestampComputeAndGraphics == VK_TRUE) { in InitializeSupportedFeaturesImpl()
H A DSamplerVk.cpp80 createInfo.compareEnable = VK_TRUE; in Initialize()
92 if (device->GetDeviceInfo().features.samplerAnisotropy == VK_TRUE && maxAnisotropy > 1) { in Initialize()
93 createInfo.anisotropyEnable = VK_TRUE; in Initialize()
H A DRenderPipelineVk.cpp236 attachment.blendEnable = state->blend != nullptr ? VK_TRUE : VK_FALSE; in ComputeColorDesc()
293 : VK_TRUE; in ComputeDepthStencilDesc()
294 depthStencilState.depthWriteEnable = descriptor->depthWriteEnabled ? VK_TRUE : VK_FALSE; in ComputeDepthStencilDesc()
301 StencilTestEnabled(descriptor) ? VK_TRUE : VK_FALSE; in ComputeDepthStencilDesc()
426 rasterization.depthClampEnable = ShouldClampDepth() ? VK_TRUE : VK_FALSE; in Initialize()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_pipeline.c93 primitive_state.primitiveRestartEnable = state->dyn_state2.primitive_restart ? VK_TRUE : VK_FALSE; in zink_create_gfx_pipeline()
103 primitive_state.primitiveRestartEnable = state->dyn_state2.primitive_restart ? VK_TRUE : VK_FALSE; in zink_create_gfx_pipeline()
152 ms_state.sampleShadingEnable = VK_TRUE; in zink_create_gfx_pipeline()
160 VK_TRUE in zink_create_gfx_pipeline()
179 rast_state.depthBiasEnable = VK_TRUE; in zink_create_gfx_pipeline()
320 rast_line_state.stippledLineEnable = VK_TRUE; in zink_create_gfx_pipeline()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/
H A DvktShaderObjectMiscTests.cpp281 vk::VkBool32 colorBlendEnable = m_params.blendEnabled[i] ? VK_TRUE : VK_FALSE; in iterate()
293 colorWriteEnables[i] = i < colorAttachmentCount ? VK_TRUE : VK_FALSE; in iterate()
708 features2.features.tessellationShader = VK_TRUE;
710 features2.features.geometryShader = VK_TRUE;
713 features2.features.logicOp = VK_TRUE;
715 features2.features.alphaToOne = VK_TRUE;
717 features2.features.depthBounds = VK_TRUE;
719 features2.features.depthClamp = VK_TRUE;
721 features2.features.depthBiasClamp = VK_TRUE;
726 depthClipEnableFeatures.depthClipEnable = VK_TRUE;
[all...]
/third_party/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_device.c701 f->robustImageAccess = VK_TRUE; in lvp_get_physical_device_features_1_3()
702 f->inlineUniformBlock = VK_TRUE; in lvp_get_physical_device_features_1_3()
703 f->descriptorBindingInlineUniformBlockUpdateAfterBind = VK_TRUE; in lvp_get_physical_device_features_1_3()
704 f->pipelineCreationCacheControl = VK_TRUE; in lvp_get_physical_device_features_1_3()
705 f->privateData = VK_TRUE; in lvp_get_physical_device_features_1_3()
706 f->shaderDemoteToHelperInvocation = VK_TRUE; in lvp_get_physical_device_features_1_3()
707 f->shaderTerminateInvocation = VK_TRUE; in lvp_get_physical_device_features_1_3()
708 f->subgroupSizeControl = VK_TRUE; in lvp_get_physical_device_features_1_3()
709 f->computeFullSubgroups = VK_TRUE; in lvp_get_physical_device_features_1_3()
710 f->synchronization2 = VK_TRUE; in lvp_get_physical_device_features_1_3()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DRendererVk.cpp642 return VK_TRUE; in DebugReportCallback()
2277 if (supportsPresent == VK_TRUE) in selectPresentQueueForSurface()
2297 if (supportsPresent == VK_TRUE) in selectPresentQueueForSurface()
2442 if (mPhysicalDeviceProperties.limits.standardSampleLocations != VK_TRUE) in getMaxSupportedESVersion()
2521 if (mLineRasterizationFeatures.bresenhamLines == VK_TRUE) in initFeatures()
2534 if (mProvokingVertexFeatures.provokingVertexLast == VK_TRUE) in initFeatures()
2543 (mProtectedMemoryFeatures.protectedMemory == VK_TRUE)); in initFeatures()
2547 (mHostQueryResetFeatures.hostQueryReset == VK_TRUE)); in initFeatures()
2665 mTransformFeedbackFeatures.transformFeedback == VK_TRUE); in initFeatures()
2668 mTransformFeedbackFeatures.geometryStreams == VK_TRUE); in initFeatures()
[all...]
/third_party/vulkan-loader/tests/
H A Dloader_phys_dev_inst_ext_tests.cpp357 feats.robustBufferAccess = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
358 feats.fullDrawIndexUint32 = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
359 feats.imageCubeArray = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
360 feats.independentBlend = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
361 feats.geometryShader = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
362 feats.tessellationShader = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
363 feats.sampleRateShading = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
364 feats.dualSrcBlend = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
365 feats.logicOp = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
366 feats.multiDrawIndirect = (rand() % 2) == 0 ? VK_FALSE : VK_TRUE; in FillInRandomFeatures()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp347 if (f16_i8_features.shaderFloat16 != VK_TRUE) in checkSupport()
365 if (features2.features.shaderFloat64 != VK_TRUE) in checkSupport()
378 if (f16_i8_features.shaderInt8 != VK_TRUE) in checkSupport()
391 if (features2.features.shaderInt16 != VK_TRUE) in checkSupport()
404 if (features2.features.shaderInt64 != VK_TRUE) in checkSupport()
625 if (needsFloat16 && f16_i8_features.shaderFloat16 != VK_TRUE) in checkSupport()
627 if (needsFloat64 && features2.features.shaderFloat64 != VK_TRUE) in checkSupport()
629 if (needsInt8 && f16_i8_features.shaderInt8 != VK_TRUE) in checkSupport()
631 if (needsInt16 && features2.features.shaderInt16 != VK_TRUE) in checkSupport()
633 if (needsInt64 && features2.features.shaderInt64 != VK_TRUE) in checkSupport()
[all...]
H A DvktComputeWorkgroupMemoryExplicitLayoutTests.cpp107 if (layout_features.workgroupMemoryExplicitLayoutScalarBlockLayout != VK_TRUE) in checkSupportWithParams()
113 if (f16_i8_features.shaderInt8 != VK_TRUE) in checkSupportWithParams()
115 if (layout_features.workgroupMemoryExplicitLayout8BitAccess != VK_TRUE) in checkSupportWithParams()
121 if (features2.features.shaderInt16 != VK_TRUE) in checkSupportWithParams()
123 if (layout_features.workgroupMemoryExplicitLayout16BitAccess != VK_TRUE) in checkSupportWithParams()
129 if (features2.features.shaderInt64 != VK_TRUE) in checkSupportWithParams()
135 if (f16_i8_features.shaderFloat16 != VK_TRUE) in checkSupportWithParams()
137 if (layout_features.workgroupMemoryExplicitLayout16BitAccess != VK_TRUE) in checkSupportWithParams()
143 if (features2.features.shaderFloat64 != VK_TRUE) in checkSupportWithParams()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeZeroInitializeWorkgroupMemoryTests.cpp365 if (f16_i8_features.shaderFloat16 != VK_TRUE) in checkSupport()
383 if (features2.features.shaderFloat64 != VK_TRUE) in checkSupport()
396 if (f16_i8_features.shaderInt8 != VK_TRUE) in checkSupport()
409 if (features2.features.shaderInt16 != VK_TRUE) in checkSupport()
422 if (features2.features.shaderInt64 != VK_TRUE) in checkSupport()
638 if (needsFloat16 && f16_i8_features.shaderFloat16 != VK_TRUE) in checkSupport()
640 if (needsFloat64 && features2.features.shaderFloat64 != VK_TRUE) in checkSupport()
642 if (needsInt8 && f16_i8_features.shaderInt8 != VK_TRUE) in checkSupport()
644 if (needsInt16 && features2.features.shaderInt16 != VK_TRUE) in checkSupport()
646 if (needsInt64 && features2.features.shaderInt64 != VK_TRUE) in checkSupport()
[all...]
H A DvktComputeWorkgroupMemoryExplicitLayoutTests.cpp103 if (layout_features.workgroupMemoryExplicitLayoutScalarBlockLayout != VK_TRUE) in checkSupportWithParams()
109 if (f16_i8_features.shaderInt8 != VK_TRUE) in checkSupportWithParams()
111 if (layout_features.workgroupMemoryExplicitLayout8BitAccess != VK_TRUE) in checkSupportWithParams()
117 if (features2.features.shaderInt16 != VK_TRUE) in checkSupportWithParams()
119 if (layout_features.workgroupMemoryExplicitLayout16BitAccess != VK_TRUE) in checkSupportWithParams()
125 if (features2.features.shaderInt64 != VK_TRUE) in checkSupportWithParams()
131 if (f16_i8_features.shaderFloat16 != VK_TRUE) in checkSupportWithParams()
133 if (layout_features.workgroupMemoryExplicitLayout16BitAccess != VK_TRUE) in checkSupportWithParams()
139 if (features2.features.shaderFloat64 != VK_TRUE) in checkSupportWithParams()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/
H A DvktRobustnessBufferAccessTests.cpp698 features2.features.robustBufferAccess = VK_TRUE; in createInstance()
701 features2.features.shaderInt64 = VK_TRUE; in createInstance()
704 features2.features.vertexPipelineStoresAndAtomics = VK_TRUE; in createInstance()
707 features2.features.fragmentStoresAndAtomics = VK_TRUE; in createInstance()
715 pipelineRobustnessFeatures.pipelineRobustness = VK_TRUE; in createInstance()
766 features2.features.robustBufferAccess = VK_TRUE; in createInstance()
769 features2.features.shaderInt64 = VK_TRUE; in createInstance()
772 features2.features.vertexPipelineStoresAndAtomics = VK_TRUE; in createInstance()
775 features2.features.fragmentStoresAndAtomics = VK_TRUE; in createInstance()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/postmortem/
H A DvktPostmortemDeviceFaultTests.cpp149 VK_TRUE, // VkBool32 deviceFault; in CustomDevice()
150 VK_TRUE // VkBool32 deviceFaultVendorBinary; in CustomDevice()
205 VK_TRUE, // VkBool32 deviceFault;
206 VK_TRUE // VkBool32 deviceFaultVendorBinary;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmIndexingTests.cpp271 spec.requestedVulkanFeatures.coreFeatures.shaderInt16 = VK_TRUE; in addComputeIndexingStructTests()
274 spec.requestedVulkanFeatures.coreFeatures.shaderInt64 = VK_TRUE; in addComputeIndexingStructTests()
435 vulkanFeatures.coreFeatures.shaderInt16 = VK_TRUE; in addGraphicsIndexingStructTests()
443 vulkanFeatures.coreFeatures.shaderInt64 = VK_TRUE; in addGraphicsIndexingStructTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/postmortem/
H A DvktPostmortemDeviceFaultTests.cpp149 VK_TRUE, // VkBool32 deviceFault; in CustomDevice()
150 VK_TRUE // VkBool32 deviceFaultVendorBinary; in CustomDevice()
205 VK_TRUE, // VkBool32 deviceFault;
206 VK_TRUE // VkBool32 deviceFaultVendorBinary;
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmIndexingTests.cpp271 spec.requestedVulkanFeatures.coreFeatures.shaderInt16 = VK_TRUE; in addComputeIndexingStructTests()
274 spec.requestedVulkanFeatures.coreFeatures.shaderInt64 = VK_TRUE; in addComputeIndexingStructTests()
435 vulkanFeatures.coreFeatures.shaderInt16 = VK_TRUE; in addGraphicsIndexingStructTests()
443 vulkanFeatures.coreFeatures.shaderInt64 = VK_TRUE; in addGraphicsIndexingStructTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateComputeTests.cpp365 vkd->cmdSetDepthTestEnable(cmdBuffer, VK_TRUE); in setDepthTestEnable()
367 vkd->cmdSetDepthTestEnableEXT(cmdBuffer, VK_TRUE); in setDepthTestEnable()
374 vkd->cmdSetDepthWriteEnable(cmdBuffer, VK_TRUE); in setDepthWriteEnable()
376 vkd->cmdSetDepthWriteEnableEXT(cmdBuffer, VK_TRUE); in setDepthWriteEnable()
392 vkd->cmdSetDepthBoundsTestEnable(cmdBuffer, VK_TRUE); in setDepthBoundsTestEnable()
394 vkd->cmdSetDepthBoundsTestEnableEXT(cmdBuffer, VK_TRUE); in setDepthBoundsTestEnable()
401 vkd->cmdSetStencilTestEnable(cmdBuffer, VK_TRUE); in setStencilTestEnable()
403 vkd->cmdSetStencilTestEnableEXT(cmdBuffer, VK_TRUE); in setStencilTestEnable()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/dynamic_state/
H A DvktDynamicStateComputeTests.cpp363 vkd->cmdSetDepthTestEnable(cmdBuffer, VK_TRUE); in setDepthTestEnable()
365 vkd->cmdSetDepthTestEnableEXT(cmdBuffer, VK_TRUE); in setDepthTestEnable()
372 vkd->cmdSetDepthWriteEnable(cmdBuffer, VK_TRUE); in setDepthWriteEnable()
374 vkd->cmdSetDepthWriteEnableEXT(cmdBuffer, VK_TRUE); in setDepthWriteEnable()
390 vkd->cmdSetDepthBoundsTestEnable(cmdBuffer, VK_TRUE); in setDepthBoundsTestEnable()
392 vkd->cmdSetDepthBoundsTestEnableEXT(cmdBuffer, VK_TRUE); in setDepthBoundsTestEnable()
399 vkd->cmdSetStencilTestEnable(cmdBuffer, VK_TRUE); in setStencilTestEnable()
401 vkd->cmdSetStencilTestEnableEXT(cmdBuffer, VK_TRUE); in setStencilTestEnable()

Completed in 38 milliseconds

12345678910>>...16