platform/upstream/mesa.git
3 years agocrocus: dirty blend state more often.
Dave Airlie [Thu, 24 Jun 2021 04:20:25 +0000 (14:20 +1000)]
crocus: dirty blend state more often.

The blend state depends on wm_prog_data dual_src and it also
depends on the cbuf formats in can_emit_logic_op.

Dirty it in the correct places.

Fixes:
dEQP-GLES3.functional.fbo.invalidate*

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11567>

3 years agocrocus/gfx6: fix sampler view first level.
Dave Airlie [Thu, 24 Jun 2021 03:19:31 +0000 (13:19 +1000)]
crocus/gfx6: fix sampler view first level.

The gfx6 state needs to dirty sampler state so that BaseMipLevel
gets updated properly.

Fixes:
dEQP-GLES3.functional.texture.mipmap.cube.base_level.*

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11567>

3 years agointel/genxml: fix gfx6 GS SVB_INDEX encoding
Dave Airlie [Wed, 23 Jun 2021 23:06:09 +0000 (09:06 +1000)]
intel/genxml: fix gfx6 GS SVB_INDEX encoding

This seems to match what the docs + 965 traces say

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11567>

3 years agocrocus/query: poll the syncobj in the no wait situation
Dave Airlie [Thu, 17 Jun 2021 19:07:26 +0000 (05:07 +1000)]
crocus/query: poll the syncobj in the no wait situation

In the no wait, poll the syncobj and bail if it's hasn't signalled.
This fixes a bunch of deqp xfb tests on sandybridge

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11567>

3 years agovl/dri3: Don't leak regions on the X server
Adam Jackson [Fri, 18 Jun 2021 13:36:13 +0000 (09:36 -0400)]
vl/dri3: Don't leak regions on the X server

I can't tell from a quick read whether this clip region is actually just
the bounding box so could be skipped entirely. But the old code never
destroyed it, which means we'd leak a couple hundred bytes on the X
server side for every SwapBuffers until the client dies of XID
exhaustion, which is somewhere north of 2GB for typical systems so you
may or may not just run out of memory first.

Create the region at swap time and stash it in the drawable state.

Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11461>

3 years agoloader/dri3: Don't churn through xfixes regions in SwapBuffers
Adam Jackson [Wed, 23 Jun 2021 15:05:44 +0000 (11:05 -0400)]
loader/dri3: Don't churn through xfixes regions in SwapBuffers

Regions are not expensive objects on the server side, it's very slightly
cheaper to update an existing one than to create a new one, and we can
garbage collect them when the drawable is destroyed. Worse, XID reuse
bugs exist, so the more we can do to not churn through XIDs the better.

Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11461>

3 years agoloader/dri3: Properly initialize the XFIXES extension
Adam Jackson [Wed, 23 Jun 2021 13:59:22 +0000 (09:59 -0400)]
loader/dri3: Properly initialize the XFIXES extension

The server starts off assuming the only XFIXES request the client might
known is FixesQueryVersion, and based on the version number the client
supplies it unlocks additional requests. If you forget to do this then
xcb_xfixes_create_region will throw BadRequest and you will be very
confused. libXfixes would hide this for you in extension setup but xcb
is not so forgiving.

Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11461>

3 years agoradeonsi: optimize set_inlinable_constants when they don't change
Marek Olšák [Mon, 21 Jun 2021 23:25:08 +0000 (19:25 -0400)]
radeonsi: optimize set_inlinable_constants when they don't change

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11509>

3 years agoac/gpu_info: adjust the condition for use_late_alloc
Marek Olšák [Sun, 20 Jun 2021 05:50:25 +0000 (01:50 -0400)]
ac/gpu_info: adjust the condition for use_late_alloc

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11509>

3 years agoradeonsi: don't use NGG culling on 1 RB chips
Marek Olšák [Sun, 20 Jun 2021 05:42:18 +0000 (01:42 -0400)]
radeonsi: don't use NGG culling on 1 RB chips

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11509>

3 years agoradeonsi: remove incorrect comment about hangs in gfx10_ngg_gs_emit_epilogue
Marek Olšák [Thu, 17 Jun 2021 15:26:25 +0000 (11:26 -0400)]
radeonsi: remove incorrect comment about hangs in gfx10_ngg_gs_emit_epilogue

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11509>

3 years agoradeonsi: if shader culling culls all vertices, cull the primitive exports too
Marek Olšák [Wed, 16 Jun 2021 23:31:22 +0000 (19:31 -0400)]
radeonsi: if shader culling culls all vertices, cull the primitive exports too

This was overlooked. It benefits triangle strips the most due to
GS fast launch.

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11509>

3 years agoradeonsi: document why VBO descriptors in user SGPRs are beneficial
Marek Olšák [Wed, 16 Jun 2021 23:30:52 +0000 (19:30 -0400)]
radeonsi: document why VBO descriptors in user SGPRs are beneficial

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11509>

3 years agolavapipe: implement multidraw ext
Mike Blumenkrantz [Thu, 25 Mar 2021 18:06:41 +0000 (14:06 -0400)]
lavapipe: implement multidraw ext

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11533>

3 years agozink: use depth/stencil-only layouts for depth/stencil-only formats
Mike Blumenkrantz [Wed, 31 Mar 2021 20:22:54 +0000 (16:22 -0400)]
zink: use depth/stencil-only layouts for depth/stencil-only formats

just kidding, this is banned by spec

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11389>

3 years agoutil: add work around for the game We Happy Few
Timothy Arceri [Wed, 23 Jun 2021 13:42:53 +0000 (23:42 +1000)]
util: add work around for the game We Happy Few

This is another Unreal engine game that requires the
allow_glsl_cross_stage_interpolation_mismatch workaround.

Cc: mesa-stable
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4966

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11558>

3 years agoci/i915g: Skip the piglit glx tests since we're not running X.
Emma Anholt [Wed, 23 Jun 2021 17:20:54 +0000 (10:20 -0700)]
ci/i915g: Skip the piglit glx tests since we're not running X.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11559>

3 years agoi915g: Finish out blend factor overrides for both RGBx and A8.
Emma Anholt [Tue, 22 Jun 2021 23:55:15 +0000 (16:55 -0700)]
i915g: Finish out blend factor overrides for both RGBx and A8.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11559>

3 years agoi915g: Fix bad naming of depth texture formats.
Emma Anholt [Tue, 22 Jun 2021 23:11:51 +0000 (16:11 -0700)]
i915g: Fix bad naming of depth texture formats.

Now matches classic's i915_reg.h and the spec.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11559>

3 years agoir3/ra: Fix corner case in collect handling
Connor Abbott [Mon, 21 Jun 2021 12:50:07 +0000 (14:50 +0200)]
ir3/ra: Fix corner case in collect handling

I ran into this when accidentally changing the scheduling order in the
hl2 trace.

Fixes: 0ffcb19 ("ir3: Rewrite register allocation")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Remove IR3_REG_DEST
Connor Abbott [Fri, 18 Jun 2021 15:44:15 +0000 (17:44 +0200)]
ir3: Remove IR3_REG_DEST

This was needed because code iterating the regs array needed to know
what was a destination and what wasn't, but now we have separate srcs
and dsts arrays so it's not needed.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Remove regs array
Connor Abbott [Fri, 18 Jun 2021 14:31:03 +0000 (16:31 +0200)]
ir3: Remove regs array

Now that everything is converted over, switch to separate src/dst
arrays.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/frontend: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:30:08 +0000 (16:30 +0200)]
ir3/frontend: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/opts: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:29:39 +0000 (16:29 +0200)]
ir3/opts: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/validate: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:28:14 +0000 (16:28 +0200)]
ir3/validate: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/print: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:28:01 +0000 (16:28 +0200)]
ir3/print: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/legalize: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:27:28 +0000 (16:27 +0200)]
ir3/legalize: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/array_to_ssa: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:26:46 +0000 (16:26 +0200)]
ir3/array_to_ssa: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/parser: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:25:58 +0000 (16:25 +0200)]
ir3/parser: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/ra: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:23:46 +0000 (16:23 +0200)]
ir3/ra: Switch to srcs/dsts arrays

RA was manually fiddling with regs to copy over the parallel copy code,
which has to be done in a different way, but if we switch this all over
at once it shouldn't be a problem.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/core: Switch to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:20:24 +0000 (16:20 +0200)]
ir3/core: Switch to srcs/dsts arrays

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/sched: Convert to srcs/dsts arrays
Connor Abbott [Fri, 18 Jun 2021 14:13:34 +0000 (16:13 +0200)]
ir3/sched: Convert to srcs/dsts arrays

Also change the indexing in ir3_delayslots, so it's finally sane! To do
this we also have to change foreach_ssa_src_n to index srcs instead of
regs, so that the indexing stays in sync.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agofreedreno/tests: Convert to srcs/dsts
Connor Abbott [Fri, 18 Jun 2021 14:12:31 +0000 (16:12 +0200)]
freedreno/tests: Convert to srcs/dsts

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agofreedreno/isa: Convert to srcs/dsts
Connor Abbott [Fri, 18 Jun 2021 14:11:52 +0000 (16:11 +0200)]
freedreno/isa: Convert to srcs/dsts

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Add srcs/dsts arrays to ir3_instruction
Connor Abbott [Fri, 18 Jun 2021 12:01:58 +0000 (14:01 +0200)]
ir3: Add srcs/dsts arrays to ir3_instruction

Initially these will shadow regs, so that we can transition things
before getting rid of regs.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3/legalize: Construct branch properly
Connor Abbott [Fri, 18 Jun 2021 11:56:11 +0000 (13:56 +0200)]
ir3/legalize: Construct branch properly

Don't just yeet stuff into regs without updating regs_count, etc. This
will break horribly during the transition otherwise.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Add separate src/dst count in ir3_instr
Connor Abbott [Fri, 18 Jun 2021 11:40:56 +0000 (13:40 +0200)]
ir3: Add separate src/dst count in ir3_instr

srcs and dsts will be in separate arrays, so we need everything creating
it to give a separate source and dest max count.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Split ir3_reg_create() into ir3_{src,dst}_create()
Connor Abbott [Fri, 18 Jun 2021 11:19:34 +0000 (13:19 +0200)]
ir3: Split ir3_reg_create() into ir3_{src,dst}_create()

Right now they are basically the same, but in the future they will
append to different arrays.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Make ir3_instruction::address a normal register
Connor Abbott [Fri, 18 Jun 2021 10:01:18 +0000 (12:01 +0200)]
ir3: Make ir3_instruction::address a normal register

This fixes an annoying mismatch in the indices between foreach_ssa_src_n
and ir3_delayslots(), and lets us remove a bunch of other special cases.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Add is_reg_special()
Connor Abbott [Wed, 23 Jun 2021 15:51:28 +0000 (17:51 +0200)]
ir3: Add is_reg_special()

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Validate that ir3_register::instr is correct
Connor Abbott [Fri, 18 Jun 2021 10:49:05 +0000 (12:49 +0200)]
ir3: Validate that ir3_register::instr is correct

Catch the mistake fixed in the previous commit.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Update ir3_register::instr when cloning instructions
Connor Abbott [Fri, 18 Jun 2021 10:48:06 +0000 (12:48 +0200)]
ir3: Update ir3_register::instr when cloning instructions

We happened to not clone any SSA instructions, but we will once address
instructions start counting as SSA. Fix this oversight.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Split read-modify-write array dests in two
Connor Abbott [Thu, 17 Jun 2021 15:04:41 +0000 (17:04 +0200)]
ir3: Split read-modify-write array dests in two

Instructions that operate on an array read the previous state of the
array, modify it, and write a new array, at least conceptually before
RA. Previously the same register specified the previous state and acted
as the new state, but this meant that it was both a source and
destination which meant that it was getting in the way of splitting up
sources and destinations. Break out the source into a separate register,
and use the new tied-src infrastructure to share code with a6xx atomics.
With this, there are basically no more special cases for arrays in RA.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoir3: Make tied sources/destinations part of the IR
Connor Abbott [Thu, 17 Jun 2021 13:14:05 +0000 (15:14 +0200)]
ir3: Make tied sources/destinations part of the IR

Previously this was hard-coded for a6xx atomic instructions. However
we'll need a way for array destinations to point to the source with the
previous value of the array when we split them up. This is conceptually
the same as tied source/destinations for a6xx atomics, except that array
writes sometimes won't have a previous value to point to. So move this
into the IR so that it can be more dynamic. As a bonus we can move the
knowledge of a6xx atomics out of RA, where it's out-of-place, and into
the a6xx-specific code that creates them.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11469>

3 years agoamd/ci: add hawaii-specific skip and fail lists
Daniel Schürmann [Thu, 22 Apr 2021 17:07:02 +0000 (19:07 +0200)]
amd/ci: add hawaii-specific skip and fail lists

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10424>

3 years agopan/mdg: Add 16 bytes of padding to the end of shaders
Icecream95 [Wed, 23 Jun 2021 08:31:37 +0000 (20:31 +1200)]
pan/mdg: Add 16 bytes of padding to the end of shaders

Fixes INSTR_INVALID_PC faults when a shader ends on a 16MB boundary.

Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11551>

3 years agoanv: fix emitting dynamic primitive topology
Tapani Pälli [Tue, 15 Jun 2021 06:55:51 +0000 (09:55 +0300)]
anv: fix emitting dynamic primitive topology

Initial implementation missed various fields that derive from the
primitive topology. This patch fixes 3DSTATE_RASTER/3DSTATE_SF,
3DSTATE_CLIP and 3DSTATE_WM (gen7.x) emission in the dynamic case.

Fixes: f6fa4a80000 ("anv: add support for dynamic primitive topology change")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4924
Signed-off-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/11379>

3 years agoRevert "ci: disable panfrost t760 jobs"
Daniel Stone [Wed, 23 Jun 2021 11:30:07 +0000 (12:30 +0100)]
Revert "ci: disable panfrost t760 jobs"

Both our T760 machines took a dive in beautiful synchronicity last
night, were recovered early this morning.

This reverts commit 854d93f73d6064a13ddc13dddf74c8c760cda1d4.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11555>

3 years agoiris: take a reference to memobj bo in iris_resource_from_memobj
Tapani Pälli [Thu, 3 Jun 2021 12:13:54 +0000 (15:13 +0300)]
iris: take a reference to memobj bo in iris_resource_from_memobj

v2: and remove it from iris_memobj_create_from_handle ... (Nanley)

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4969
Fixes: 772dc50d162 ("iris: hook up resource creation from memory object")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11552>

3 years agoradeonsi: disable ngg culling on llvm < 12
Pierre-Eric Pelloux-Prayer [Mon, 14 Jun 2021 15:52:00 +0000 (17:52 +0200)]
radeonsi: disable ngg culling on llvm < 12

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4874
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
CC: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11362>

3 years agoanv: bound checks buffer memory binding in debug builds
Lionel Landwerlin [Tue, 22 Jun 2021 18:36:41 +0000 (21:36 +0300)]
anv: bound checks buffer memory binding in debug builds

Validation layers should warn you about this
(VUID-VkBindBufferMemoryInfo-size-01037) but this would be useful for
zink debugging.

Requested by Zmike.

v2: Also check memoryOffset (Jason)

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11542>

3 years agointel/fs: Implement Wa_14013745556 on TGL+.
Francisco Jerez [Tue, 25 May 2021 06:21:10 +0000 (23:21 -0700)]
intel/fs: Implement Wa_14013745556 on TGL+.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>

3 years agointel/fs: Fix synchronization of accumulator-clearing W/A move on TGL+.
Francisco Jerez [Tue, 25 May 2021 05:53:27 +0000 (22:53 -0700)]
intel/fs: Fix synchronization of accumulator-clearing W/A move on TGL+.

Right now the accumulator-clearing move emitted by the generator for
Wa_14010017096 inherits the SWSB field from the previous instruction.
This can lead to redundant synchronization, or possibly more serious
issues if the previous instruction had a TGL_SBID_SET SWSB
synchronization mode.  Take the SWSB synchronization information from
the IR.

Fixes: a27542c5ddec8 ("intel/compiler: Clear accumulator register before EOT")
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>

3 years agointel/fs: Teach IR about EOT instruction writing the accumulator implicitly on TGL+.
Francisco Jerez [Tue, 25 May 2021 22:43:01 +0000 (15:43 -0700)]
intel/fs: Teach IR about EOT instruction writing the accumulator implicitly on TGL+.

This is unlikely to have had any negative side effect on the original
TGL, but will lead to issues on XeHP+ if the software scoreboard pass
isn't able to synchronize the accumulator writes.

Fixes: a27542c5ddec8 ("intel/compiler: Clear accumulator register before EOT")
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>

3 years agointel/fs: Add SWSB dependency annotations for cross-pipeline WaR data hazards on...
Francisco Jerez [Wed, 26 May 2021 23:50:40 +0000 (16:50 -0700)]
intel/fs: Add SWSB dependency annotations for cross-pipeline WaR data hazards on XeHP+.

In cases where an in-order instruction is overwriting a register
previously read by another in-order instruction, drop the dependency
iff the previous read is guaranteed to have occurred from the same
in-order pipeline.  This should only have an effect on XeHP+ since
previous Xe platforms only had one in-order FPU pipeline.

The previous workaround we were using for this treated all ordered
read dependencies as write dependencies to avoid noise from our
simulation environment.  Relative to our previous workaround this
improves performance of GFXBench5 gl_tess by ~7% on a DG2 system
among other single-digit percentual FPS improvements.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>

3 years agointel/fs: Implement Wa_22012725308 for cross-pipe accumulator data hazard.
Francisco Jerez [Tue, 25 May 2021 22:02:53 +0000 (15:02 -0700)]
intel/fs: Implement Wa_22012725308 for cross-pipe accumulator data hazard.

The hardware fails to provide the expected data coherency guarantees
for accumulator registers when accessed from multiple FPU pipelines.
Fix this by tracking implicit accumulator accesses just like we do for
regular GRF registers, but instead of adding synchronization
annotations for any dependency we only do it for dependencies with a
pipeline mismatch, since the hardware should be able to guarantee
proper synchronization for matching pipelines.

Note that this workaround handles RaW and WaW dependencies in addition
to the WaR dependencies described in the hardware bug report even
though cross-pipeline RaW accumulator dependencies should be extremely
rare, since chances are the hardware will also hang if we ever hit
such a condition.  This only affects XeHP+, since all FPU instructions
are executed as a single in-order pipeline on earlier Xe platforms.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>

3 years agointel/fs: Track single accumulator in scoreboard lowering pass.
Francisco Jerez [Tue, 25 May 2021 21:41:26 +0000 (14:41 -0700)]
intel/fs: Track single accumulator in scoreboard lowering pass.

This change reduces the precision of the scoreboard data structure for
accumulator registers, because the rules determining the aliasing of
accumulator registers are non-trivial and poorly documented (e.g. acc0
overlaps the storage of acc1 when the former is accessed with an
integer type).  We could implement those rules but it wouldn't have
any practical benefit since we currently only use acc0-1, and for the
most part we can rely on the hardware's accumulator dependency
tracking.  Instead make our lives easier by representing it as a
single register.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>

3 years agointel/fs/xehp: Assert that the compiler is sending all 3 coords for cubemaps.
Francisco Jerez [Mon, 17 May 2021 20:15:48 +0000 (13:15 -0700)]
intel/fs/xehp: Assert that the compiler is sending all 3 coords for cubemaps.

As required by HSDES:14013363432.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>

3 years agofreedreno/ci: Use TU_IGNORE_CONFORMANCE_WARNING to reduce warnings
Matt Turner [Wed, 23 Jun 2021 01:11:13 +0000 (01:11 +0000)]
freedreno/ci: Use TU_IGNORE_CONFORMANCE_WARNING to reduce warnings

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11543>

3 years agotu: Provide a toggle to avoid warnings about unsupported devices
Matt Turner [Tue, 22 Jun 2021 22:25:05 +0000 (22:25 +0000)]
tu: Provide a toggle to avoid warnings about unsupported devices

In the CI, we have such devices, and this message is printed many
hundreds of times. This results in a useless spam which makes it
difficult to see real issues.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11543>

3 years agomeson/crocus: add prefer-crocus option.
Dave Airlie [Mon, 14 Jun 2021 03:09:45 +0000 (13:09 +1000)]
meson/crocus: add prefer-crocus option.

This just allows picking crocus without having to set the env var.

Acked-by: Alyssa Rosenzweig <alyssa@collabora.com>
Acked-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11353>

3 years agomesa: unreference zombie buffers when creating buffers to lower memory usage
Marek Olšák [Mon, 14 Jun 2021 19:51:30 +0000 (15:51 -0400)]
mesa: unreference zombie buffers when creating buffers to lower memory usage

This fixes an issue where one context only creates buffers while another
context only destroys buffers. Only the creating context can release its
buffers and the destroying context only turns them into zombie buffers.

This fix makes the creating context release its zombie buffers.
It's not a plot from an apocalyptic movie.

Fixes: e014e3b6be6 "mesa: don't count buffer references for the context that created them"
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4840

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11514>

3 years agocrocus: fix batch state bo leak
Dave Airlie [Wed, 23 Jun 2021 02:57:13 +0000 (12:57 +1000)]
crocus: fix batch state bo leak

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11547>

3 years agocrocus: fix vertex buffer leak on screen end.
Dave Airlie [Wed, 23 Jun 2021 02:26:33 +0000 (12:26 +1000)]
crocus: fix vertex buffer leak on screen end.

this was stopping the screen from being cleaned up as well

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11547>

3 years agocrocus: free context state properly.
Dave Airlie [Wed, 23 Jun 2021 02:00:37 +0000 (12:00 +1000)]
crocus: free context state properly.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11547>

3 years agozink: ci updates
Mike Blumenkrantz [Wed, 23 Jun 2021 01:06:56 +0000 (21:06 -0400)]
zink: ci updates

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agozink: remove primconvert
Mike Blumenkrantz [Fri, 21 May 2021 11:38:24 +0000 (07:38 -0400)]
zink: remove primconvert

this is no longer used

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agozink: export supported primitive restart types
Mike Blumenkrantz [Fri, 21 May 2021 11:36:53 +0000 (07:36 -0400)]
zink: export supported primitive restart types

this is now handled by gallium, so the codepath can be dropped

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agozink: export supported prim types
Mike Blumenkrantz [Fri, 21 May 2021 11:36:29 +0000 (07:36 -0400)]
zink: export supported prim types

this is now handled by gallium, so the related codepaths can be dropped

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agozink: export 8bit index buffer support based on extension presence
Mike Blumenkrantz [Fri, 21 May 2021 11:35:12 +0000 (07:35 -0400)]
zink: export 8bit index buffer support based on extension presence

this is now handled by gallium, so the codepath can be dropped

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agozink: export PIPE_CAP_EMULATE_NONFIXED_PRIMITIVE_RESTART
Mike Blumenkrantz [Fri, 21 May 2021 11:31:49 +0000 (07:31 -0400)]
zink: export PIPE_CAP_EMULATE_NONFIXED_PRIMITIVE_RESTART

gallium will now handle unsupported restart index rewriting, so
this codepath can be removed

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agogallium: add a pipe cap for determining driver support for prim type in restarts
Mike Blumenkrantz [Fri, 21 May 2021 11:25:40 +0000 (07:25 -0400)]
gallium: add a pipe cap for determining driver support for prim type in restarts

this is another prim type bitmask which will trigger automatic draw rewriting
to a direct draw any time a prim-restart draw occurs with a prim type that is
not supported by the driver for prim restart, even if that prim type is supported
for normal drawing

the default is set to all prim types to preserve existing functionality, and PrimitiveRestartForPatches
is now explicitly set to false because no driver supports it

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agogallium: add a pipe cap for performing automatic prim type conversion
Mike Blumenkrantz [Fri, 21 May 2021 11:17:34 +0000 (07:17 -0400)]
gallium: add a pipe cap for performing automatic prim type conversion

drivers can now export a bitmask of the primitive types they support,
and all others will be automatically be rewritten

the default value is set to all primitive types supported to preserve
existing behavior

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agogallium: handle automatic 8bit -> 16bit index buffer rewrites
Mike Blumenkrantz [Fri, 21 May 2021 11:09:43 +0000 (07:09 -0400)]
gallium: handle automatic 8bit -> 16bit index buffer rewrites

this is based on PIPE_FORMAT_R8_UINT format support

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agogallium: add a pipe cap to rewrite index buffers for draws using a non-fixed restart...
Mike Blumenkrantz [Fri, 21 May 2021 11:00:52 +0000 (07:00 -0400)]
gallium: add a pipe cap to rewrite index buffers for draws using a non-fixed restart index

for drivers that set it, this now automatically handles restart index rewriting
by running draws through primconvert when necessary

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agoutil/primconvert: handle multidraws in primconvert
Mike Blumenkrantz [Fri, 21 May 2021 15:37:45 +0000 (11:37 -0400)]
util/primconvert: handle multidraws in primconvert

once a draw reaches primconvert, it should never be able to reach the driver
until all draw operations have been converted as necessary

Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agoutil/primconvert: handle rewriting of prim-restart draws with unsupported primtype
Mike Blumenkrantz [Fri, 21 May 2021 10:47:32 +0000 (06:47 -0400)]
util/primconvert: handle rewriting of prim-restart draws with unsupported primtype

this is a bit more work, as the primitive restart needs to be rewritten into a multidraw,
then the multidraw converted to the new primitive type and serialized back into a
single draw

detection is handled using a new primconvert config member, which is set to the full
primtype mask by default for compatibility with existing drivers

Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agoutil/primconvert: map index buffer before getting index translator function
Mike Blumenkrantz [Fri, 21 May 2021 10:33:52 +0000 (06:33 -0400)]
util/primconvert: map index buffer before getting index translator function

also set other local values on init using new util functions

no functional changes

Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agoutil/primconvert: handle indirect draws
Mike Blumenkrantz [Fri, 21 May 2021 10:31:31 +0000 (06:31 -0400)]
util/primconvert: handle indirect draws

this avoids ping-ponging to the driver, which would have to call back
to here anyway with the unwrapped indirect draw

Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agoutil/prim_restart: break out draw rewriting into separate function
Mike Blumenkrantz [Fri, 21 May 2021 10:27:19 +0000 (06:27 -0400)]
util/prim_restart: break out draw rewriting into separate function

this enables doing the draw rewrites without calling draw_vbo

Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agoaux/draw: add a util function for reading back indirect draw params
Mike Blumenkrantz [Fri, 21 May 2021 09:34:28 +0000 (05:34 -0400)]
aux/draw: add a util function for reading back indirect draw params

the return type of this is a bit clunky because instance values can change,
but it's simpler to just return the full draw info struct than to force the
caller to keep pulling from arrays or whatever

Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10973>

3 years agoci: disable panfrost t760 jobs
Mike Blumenkrantz [Wed, 23 Jun 2021 02:52:47 +0000 (22:52 -0400)]
ci: disable panfrost t760 jobs

these are timing out

Acked-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11548>

3 years agocrocus: Explicitly cast value to uint64_t
Dave Airlie [Wed, 23 Jun 2021 00:25:57 +0000 (10:25 +1000)]
crocus: Explicitly cast value to uint64_t

Ports 565a80450d28f6daa0ca8b98dad93924e712f94b from iris.

Acked-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11546>

3 years agoamd/addrlib: remove Meson debug message()
Simon Ser [Tue, 22 Jun 2021 12:58:16 +0000 (14:58 +0200)]
amd/addrlib: remove Meson debug message()

This message pops up in the Meson build logs, but has no context
and doesn't seem to be directed at end-users. Sounds like a leftover
from a debugging session.

Signed-off-by: Simon Ser <contact@emersion.fr>
Fixes: d0767fc045a1 ("amd/addrlib: use cpp.has_argument() to filter compiler arguments")
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11524>

3 years agoradeon/vcn/enc: Add missing line to HEVC SPS header code
Thong Thai [Tue, 22 Jun 2021 17:47:52 +0000 (13:47 -0400)]
radeon/vcn/enc: Add missing line to HEVC SPS header code

Add previously missing line in HEVC SPS header generation on VCN 1.0
devices, for when an image does not need to be cropped.

Fixes: e62c7e7c6ca ("radeon: Add cropping to encoded H.265 when padding is used")
Signed-off-by: Thong Thai <thong.thai@amd.com>
Reviewed-by: Leo Liu <leo.liu@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11535>

3 years agoac/llvm: don't set skip-uniform-regions to fix atomic.cmpswap
Marek Olšák [Tue, 22 Jun 2021 04:10:19 +0000 (00:10 -0400)]
ac/llvm: don't set skip-uniform-regions to fix atomic.cmpswap

This fixes SSBO atomic cmpswap tests and transform feedback order piglit tests.

Fixes: 3bb65c06706 - ac: force enable -structurizecfg-skip-uniform-regions for LLVM 11
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3884

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Acked-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11517>

3 years agoutil: add force_gl_names_reuse for SWKOTOR.
Paul Gofman [Tue, 22 Jun 2021 15:01:51 +0000 (18:01 +0300)]
util: add force_gl_names_reuse for SWKOTOR.

SWKOTOR is expecting texture names generated by glGenTextures() to
be small enough and crashes otherwise.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11527>

3 years agoi915g: Fix GL_ARB_copy_buffer assertion fails.
Emma Anholt [Tue, 22 Jun 2021 20:31:22 +0000 (13:31 -0700)]
i915g: Fix GL_ARB_copy_buffer assertion fails.

The i915_texture() asserts that the resource is not a buffer, so check for
the buffer fallback first.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11540>

3 years agonir: use a more fitting index for btd_stack_push_intel
Lionel Landwerlin [Tue, 22 Jun 2021 11:23:04 +0000 (14:23 +0300)]
nir: use a more fitting index for btd_stack_push_intel

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agonir: drop the btd_resume_intel intrinsic
Lionel Landwerlin [Tue, 22 Jun 2021 11:18:17 +0000 (14:18 +0300)]
nir: drop the btd_resume_intel intrinsic

This is now 100% equivalent to the new rt_resume intrinsic.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agointel/rt: switch to common pass for shader calls lowering
Lionel Landwerlin [Fri, 28 May 2021 12:06:09 +0000 (15:06 +0300)]
intel/rt: switch to common pass for shader calls lowering

v2: rename for new indices

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: implement caching for ray tracing pipelines
Lionel Landwerlin [Sat, 3 Apr 2021 09:01:19 +0000 (12:01 +0300)]
anv: implement caching for ray tracing pipelines

v2: Turn a bunch of pointer checks into checks against NULL (Jason)

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: move trivial return shader to device
Lionel Landwerlin [Tue, 6 Apr 2021 14:10:16 +0000 (17:10 +0300)]
anv: move trivial return shader to device

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: store more RT shader data in pipeline_stage object
Lionel Landwerlin [Fri, 2 Apr 2021 14:18:47 +0000 (17:18 +0300)]
anv: store more RT shader data in pipeline_stage object

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: cache raytracing trampoline shader
Lionel Landwerlin [Fri, 2 Apr 2021 14:03:13 +0000 (17:03 +0300)]
anv: cache raytracing trampoline shader

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoblorp: add blorp string in shader keys
Lionel Landwerlin [Fri, 2 Apr 2021 13:28:59 +0000 (16:28 +0300)]
blorp: add blorp string in shader keys

Upon looking at caching the raytracing shader (in particular the
trampoline one) I kind of got afraid that some of the keys used for
blorp would end up matching other keys. This is because blorp keys are
fairly simple. There is no SPIRV module hash included.

This change includes a "blorp" string at the beginning of the queue to
ensure we don't collide with other keys.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: Implement vkCmdTraceRays and vkCmdTraceRaysIndirect
Jason Ekstrand [Fri, 7 Aug 2020 04:05:03 +0000 (23:05 -0500)]
anv: Implement vkCmdTraceRays and vkCmdTraceRaysIndirect

v2: Fix anv_cmd_state::binding_tables array size (Lionel)

v2: Fix anv_cmd_state::samplers array size (Lionel)

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: Make anv_address::offset 64-bit
Jason Ekstrand [Mon, 6 Jul 2020 23:12:35 +0000 (18:12 -0500)]
anv: Make anv_address::offset 64-bit

This allows us to convert a 64-bit address to an anv_address which is
useful for working with device addresses.

v2: switch to int64_t to keep state pool relative relocation working
    on non-softpin platforms

v3: Update assert to reflect relative offsets (Jason)

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: Allow _anv_combine_address with a NULL batch
Jason Ekstrand [Fri, 7 Aug 2020 03:59:35 +0000 (22:59 -0500)]
anv: Allow _anv_combine_address with a NULL batch

This is required in order to be able to use GenXML pack functions for
structs with addresses when you're not packing into a batch.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>

3 years agoanv: Add support for vkCmdSetRayTracingPipelineStackSizeKHR
Jason Ekstrand [Fri, 7 Aug 2020 03:53:06 +0000 (22:53 -0500)]
anv: Add support for vkCmdSetRayTracingPipelineStackSizeKHR

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8637>