projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1a2fe7
)
anv/device: Images are only enabled in scalar stages
author
Jason Ekstrand
<jason.ekstrand@intel.com>
Fri, 15 Apr 2016 23:39:17 +0000
(16:39 -0700)
committer
Jason Ekstrand
<jason.ekstrand@intel.com>
Fri, 15 Apr 2016 23:40:56 +0000
(16:40 -0700)
Reported-by: Ilia Mirkin <imirkin@alum.mit.edu>
src/intel/vulkan/anv_device.c
patch
|
blob
|
history
diff --git
a/src/intel/vulkan/anv_device.c
b/src/intel/vulkan/anv_device.c
index
57c40f5
..
e477fe1
100644
(file)
--- 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