diff options
author | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-01-14 06:58:11 -0800 |
---|---|---|
committer | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-01-14 07:30:46 -0800 |
commit | 802f00219addb31d6e8b73c818c42212406993eb (patch) | |
tree | cbdf37a370900da1e859f09048b98996e76d80d5 | |
parent | 08735ba91c9aa2cdfe138fdc314f8071cb0b5617 (diff) |
anv/device: Update features and limits
-rw-r--r-- | src/vulkan/anv_device.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index fa2c24a80f6..204f457e41f 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -338,7 +338,8 @@ void anv_GetPhysicalDeviceFeatures( .sampleRateShading = false, .dualSrcBlend = true, .logicOp = true, - .multiDrawIndirect = true, + .multiDrawIndirect = false, + .drawIndirectFirstInstance = false, .depthClamp = false, .depthBiasClamp = false, .fillModeNonSolid = true, @@ -372,6 +373,7 @@ void anv_GetPhysicalDeviceFeatures( .shaderInt16 = false, .alphaToOne = true, .variableMultisampleRate = false, + .inheritedQueries = false, }; } @@ -492,6 +494,7 @@ void anv_GetPhysicalDeviceProperties( .sampledImageStencilSampleCounts = sample_counts, .storageImageSampleCounts = VK_SAMPLE_COUNT_1_BIT, .maxSampleMaskWords = 1, + .timestampComputeAndGraphics = false, .timestampPeriod = time_stamp_base / (1000 * 1000 * 1000), .maxClipDistances = 0 /* FIXME */, .maxCullDistances = 0 /* FIXME */, |