diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 57c40f53df8..e477fe195ea 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -408,8 +408,8 @@ void anv_GetPhysicalDeviceFeatures( /* We can't do image stores in vec4 shaders */ pFeatures->vertexPipelineStoresAndAtomics = - !pdevice->compiler->scalar_stage[MESA_SHADER_VERTEX] && - !pdevice->compiler->scalar_stage[MESA_SHADER_GEOMETRY]; + pdevice->compiler->scalar_stage[MESA_SHADER_VERTEX] && + pdevice->compiler->scalar_stage[MESA_SHADER_GEOMETRY]; } void |