turnip: enable fullDrawIndexUint32/independentBlend/dualSrcBlend/logicOp

These are already implemented but missing from VkPhysicalDeviceFeatures.

Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3923>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3923>
This commit is contained in:
Jonathan Marek 2020-02-23 17:30:15 -05:00 committed by Marge Bot
parent 708c3a5ffd
commit 87924646db
1 changed files with 4 additions and 4 deletions

View File

@ -577,14 +577,14 @@ tu_GetPhysicalDeviceFeatures(VkPhysicalDevice physicalDevice,
*pFeatures = (VkPhysicalDeviceFeatures) {
.robustBufferAccess = false,
.fullDrawIndexUint32 = false,
.fullDrawIndexUint32 = true,
.imageCubeArray = false,
.independentBlend = false,
.independentBlend = true,
.geometryShader = false,
.tessellationShader = false,
.sampleRateShading = true,
.dualSrcBlend = false,
.logicOp = false,
.dualSrcBlend = true,
.logicOp = true,
.multiDrawIndirect = false,
.drawIndirectFirstInstance = false,
.depthClamp = false,