Eric Engestrom
1fa68d91c6
meson: only build glsl when needed
...
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Yonggang Luo <luoyonggang@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19600 >
2023-02-15 02:53:54 +00:00
Eric Engestrom
e0adef2652
meson: only build libglsl_util when needed
...
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Yonggang Luo <luoyonggang@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19600 >
2023-02-15 02:53:54 +00:00
Eric Engestrom
0404918f61
meson: only build the loader when needed
...
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Yonggang Luo <luoyonggang@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19600 >
2023-02-15 02:53:54 +00:00
Eric Engestrom
ef564f9391
meson: only build mapi when needed
...
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Yonggang Luo <luoyonggang@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19600 >
2023-02-15 02:53:54 +00:00
Eric Engestrom
de90690aba
meson: move float64_glsl_file one meson.build up
...
anv uses it.
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Yonggang Luo <luoyonggang@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19600 >
2023-02-15 02:53:54 +00:00
Mike Blumenkrantz
0337acad15
lavapipe: enable linear filtering for depth formats
...
this seems to work according to cts
Reviewed-by: Emma Anholt <emma@anholt.net>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20859 >
2023-02-15 01:49:30 +00:00
Mark Janes
4b97e349cd
intel: Implement Wa_16011448509
...
"Use 3DSTATE_CONST command for individual shaders instead of
3DSTATE_CONST_ALL COMMAND"
On gen 12.0 platforms, 3DSTATE_CONSTANT_ALL command is not processed
correctly in certain cases.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21301 >
2023-02-15 01:10:42 +00:00
Mike Blumenkrantz
f0e1512673
zink: block LINEAR filtered blits for zs formats
...
this is illegal, and the u_blitter path has to be taken to guarantee
enough accuracy that the strictest piglit tests pass
cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21314 >
2023-02-14 23:52:34 +00:00
Mike Blumenkrantz
120a506e70
Revert "zink: always use NEAREST for zs blits"
...
This reverts commit 067545eb9a .
this is good enough for CI but not enough for anholt's piglit tests
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21314 >
2023-02-14 23:52:34 +00:00
Eric Engestrom
6ac830ccb1
vk/runtime: turn vk.xml extension requirements into asserts
...
More specifically, turn
<extension name="VK_KHR_foo" requires="VK_KHR_bar">
into
assert(!ext->KHR_foo || ext->KHR_bar);
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21261 >
2023-02-14 23:28:29 +00:00
Eric Engestrom
a654a303f8
vk/runtime: keep track of supported instance extensions
...
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21261 >
2023-02-14 23:28:29 +00:00
Eric Engestrom
ca98e4446b
vk/util: keep track of extension requirements
...
Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21261 >
2023-02-14 23:28:29 +00:00
Jesse Natalie
87e83ce58e
dzn: Enable KHR_storage_buffer_storage_class
...
It's required for VK1.1 and Mesa's SPIR-V parser handles it for us.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21261 >
2023-02-14 23:28:29 +00:00
Lionel Landwerlin
9ac192d79d
intel/fs: bound subgroup invocation read to dispatch size
...
This is to avoid out of bound register accesses (potentially leading
to hangs) when the dispatch size is smaller than when is reported in
the NIR subgroup_size.
v2: Implement bounding with a mask (since workgroup sizes are powers of 2) (Faith)
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 530de844ef ("intel,anv,iris,crocus: Drop subgroup size from the shader key")
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21282 >
2023-02-14 21:29:42 +00:00
Mike Blumenkrantz
0d445cfb7e
zink: enable renderpass optimizations by default for selected drivers
...
CI has been running this for months on turnip, so let's give it some
broader testing
also add a ZINK_DEBUG=norp for testing
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21296 >
2023-02-14 20:06:16 +00:00
Georg Lehmann
4fbcd046ce
aco: Don't use vcmpx with DPP.
...
V_CMPX+DPP returns 0 with reads from disabled lanes, unlike V_CMP+DPP (RDNA3 ISA doc, 7.7)
Fixes: baab6f18c9 ("aco: Optimize branching sequence during SSA elimination.")
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20537 >
2023-02-14 19:15:17 +00:00
Faith Ekstrand
41b0407d5c
nir/from_ssa: Use more helpers in resolve_parallel_copies
...
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21299 >
2023-02-14 17:54:12 +00:00
Kenneth Graunke
3e09a636db
nir: Fix typos in the from-SSA pass comments
...
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21299 >
2023-02-14 17:54:12 +00:00
Kenneth Graunke
b1ebd9978c
nir: Fix merge_set_dump() to compile again
...
This #if 0'd debug code has been broken since -Werror=vla was added.
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21299 >
2023-02-14 17:54:11 +00:00
Kenneth Graunke
8343d7fd2a
nir: Print divergence information for registers as well as SSA defs
...
This patch causes us to print "con" and "div" for registers as well as
SSA defs. We print it on both register declarations, and destinations.
The latter isn't strictly necessary, but it is handy to be able to see
e.g. a convergent value being assigned to a divergent register without
having to constantly refer back to definitions that might be much
earlier in the program. I originally printed it for sources as well,
but that got to be a bit wordy, so I dropped that.
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21299 >
2023-02-14 17:54:11 +00:00
Erik Faye-Lund
139dd4e772
meson: remove unused USE_FOO_ASM defines
...
The usage of these defines was removed, so let's remove the definitions
as well.
Reviewed-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Yonggang Luo <luoyonggang@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21212 >
2023-02-14 17:22:14 +00:00
Rohan Garg
d64000dbb3
anv/blorp: use existing function to convert the op to a string
...
Signed-off-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21283 >
2023-02-14 16:55:21 +00:00
Rohan Garg
80790f50db
isl: fix some documentation
...
Signed-off-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21283 >
2023-02-14 16:55:21 +00:00
Rohan Garg
4e61191065
anv: reuse the VK_IMAGE_ASPECT_PLANES_BITS_ANV macro
...
Signed-off-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21283 >
2023-02-14 16:55:21 +00:00
Rohan Garg
5bb217a07a
anv: drop unused headers
...
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21283 >
2023-02-14 16:55:21 +00:00
Georg Lehmann
281a505ef0
aco: new 16bit VOP3 opcodes can use opsel
...
No Foz-DB changes on gfx11.
Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20705 >
2023-02-14 16:14:55 +00:00
Corentin Noël
e8091a6593
ci/venus: Skip tests risking out of memory issues
...
These two dEQP tests:
* dEQP-VK.api.object_management.max_concurrent.graphics_pipeline
* dEQP-VK.api.object_management.max_concurrent.compute_pipeline
Require a lot of memory and might kill crosvm or the renderer server because of EOM
issues. Skip them for now.
Acked-by: Daniel Stone <daniels@collabora.com>
Reviewed-by: Gert Wollny <gert.wollny@collabora.com>
Signed-off-by: Corentin Noël <corentin.noel@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21306 >
2023-02-14 15:56:20 +00:00
Samuel Pitoiset
fa66c8954e
radv: ignore registering pipeline libaries with SQTT
...
They aren't executable pipelines and they might not contain all
shader stages.
This fixes a crash when generating RGP captures with GPL.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21235 >
2023-02-14 15:03:45 +00:00
Erik Faye-Lund
b68f13bc90
zink: remove incorrect trailing comma
...
A trailing comma in a list is not valid JSON. Let's drop it.
Fixes: f7b2dbb2bd ("zink: relax bresenhamLines requirement for non-strictLine drivers")
Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21211 >
2023-02-14 14:44:03 +00:00
Erik Faye-Lund
445d104dd9
zink: correct companies in requirements
...
These contributors don't work for Zink itself, but various companies
who's working on Zink. Add the correct ones.
Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21211 >
2023-02-14 14:44:03 +00:00
Michel Dänzer
aaa407e3bd
ci: Enable the hasvk Vulkan driver in the fedora-release job
...
To match the Fedora packaging.
While at it, sort the Vulkan drivers alphabetically.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21236 >
2023-02-14 12:59:44 +00:00
Michel Dänzer
0511e6cf64
ci: Enable i915 Gallium driver in fedora-release job
...
To match the Fedora packaging.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21236 >
2023-02-14 12:59:44 +00:00
Michel Dänzer
e4b7e68130
ci: Re-enable intel-clc in fedora-release job
...
Fedora 36 has new enough llvm-spirv-translator.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21236 >
2023-02-14 12:59:44 +00:00
Michel Dänzer
1589d004f1
ci: Update Fedora image to 36
...
Fedora 34 is EOL.
With Fedora 37, ccache hangs in a futex syscall in CI for some reason,
so let's go with 36 for now.
v2:
* No need to add -Wno-error=stringop-overflow anymore.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21236 >
2023-02-14 12:59:44 +00:00
Michel Dänzer
2a626f999a
clover: Reserve vector memory in make_text_section
...
This isn't strictly required, but it works around
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100366 , and it might
avoid a memory reallocation.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21236 >
2023-02-14 12:59:44 +00:00
Michel Dänzer
53ce756eeb
anv/grl: Use union for reinterpreting integer as float
...
Fixes strict aliasing violations flagged by GCC 12:
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h: In function ‘float as_float(uint32_t)’:
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h:182:13: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
182 | return *reinterpret_cast<float*>(&i);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h: In function ‘float3 as_float3(int3)’:
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h:187:13: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
187 | return *reinterpret_cast<float3*>(&i3);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h:187:13: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h: In function ‘float4 as_float4(int4)’:
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h:192:13: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
192 | return *reinterpret_cast<float4*>(&i4);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/intel/vulkan/grl/include/GRLOCLCompatibility.h:192:13: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
Fixes: 5f948503e4 ("anv: Import GRL")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21236 >
2023-02-14 12:59:44 +00:00
Mike Blumenkrantz
a10529080b
zink: set ZINK_DESCRIPTORS=db for radv jobs
...
there's no testing for this in ci, and radv has a unique heap/memory
setup which catches allocation regressions
Reviewed-by: Martin Roukala <martin.roukala@mupuf.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20968 >
2023-02-14 12:14:49 +00:00
Marcin Ślusarz
75e5d458a0
anv: enable task redistribution
...
Disabling is no longer needed after "intel/compiler/mesh: use
slice id of task urb handles in mesh shaders".
This reverts commit 4eaecd7965 .
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7141
Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21007 >
2023-02-14 09:36:53 +00:00
Marcin Ślusarz
dd9bf86725
intel/compiler/mesh: use slice id of task urb handles in mesh shaders
...
When mesh shader is spawned on a different slice than the originating
task shader, then input task urb handle can come from a different
slice, so masking this information off will load data from the current
slice, instead of the one where real data are.
Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21007 >
2023-02-14 09:36:53 +00:00
Lionel Landwerlin
9ddd296cd3
anv: implement VK_EXT_vertex_input_dynamic_state
...
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21026 >
2023-02-14 09:05:35 +00:00
Lionel Landwerlin
95e3278285
anv: move 3DSTATE_VERTEX_ELEMENT emission to dynamic path
...
Prep work for VK_EXT_vertex_input_dynamic_state
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21026 >
2023-02-14 09:05:35 +00:00
Lionel Landwerlin
46ecd56191
anv: remove copied information from runtime graphics state
...
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21026 >
2023-02-14 09:05:35 +00:00
Marcin Ślusarz
b1bb44cf65
anv: fix how unset gl_Viewport & gl_Layer are handled in mesh case
...
See also: c6f69eea6a ("anv/pipeline: Properly handle unset gl_Layer and gl_ViewportIndex")
Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17620 >
2023-02-14 08:24:51 +00:00
Marcin Ślusarz
9d3e3c15f3
intel/compiler: replace gl_Layer & gl_ViewportIndex by 0 in fs if ms doesn't write it
...
Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17620 >
2023-02-14 08:24:51 +00:00
Samuel Pitoiset
5d41d8258a
radv: disable DCC for mipmaps on GFX11
...
It seems broken but can't really figure out why and DCC levels aren't
interleaved on GFX11. Skipping DCC initialization for levels seems to
also fix it but seems safer to disable completely, as a hotfix.
Fixes DCC issues with Hi-Fi Rush, Sonic Frontiers, Hogwarts Legacy
and probably more.
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8230
Cc: mesa-stable
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21186 >
2023-02-14 07:15:57 +00:00
Emma Anholt
6cbc90df48
ci/etnaviv: Update deqp xfails for gc2000.
...
More of a mixed bag here than gc7000, but at least the status is stable
in the last 3 nightly runs.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21294 >
2023-02-14 06:33:12 +00:00
Emma Anholt
fe9a00af34
ci/etnaviv: Drop stale xfails from gc7000.
...
These have passed in 3/3 of the last nightly runs. Congrats, etnaviv!
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21294 >
2023-02-14 06:33:11 +00:00
Emma Anholt
29ffdd72a1
ci/radv: Add a skip for navi21-llvm for a test that consistently timeouts.
...
I had seen this in my last round of work, but forgot to git add the skips
file.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21294 >
2023-02-14 06:33:11 +00:00
Mike Blumenkrantz
56108b411f
zink: verify compressed format layer count when creating surfaces
...
this is illegal for some cases, and mesa/st is equipped to handle
per-layer copying here
fixes #8283
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21292 >
2023-02-14 01:50:14 +00:00
Mike Blumenkrantz
64708f9316
zink: don't handle mutable init on surface creation with tc enabled
...
using the cmdbuf during this call is illegal and causes desync, thus
the initialization has to be deferred until the surface is bound
fixes #7579
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21292 >
2023-02-14 01:50:14 +00:00