[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/lib/mesa][upstream-experimental] 44 commits: ci/deqp: ensure that in `default` builds, wayland + x11 + xcb are all built



Title: GitLab

Timo Aaltonen pushed to branch upstream-experimental at X Strike Force / lib / mesa

Commits:

  • 01b374ec
    by Eric Engestrom at 2024-01-17T23:28:12+00:00
    ci/deqp: ensure that in `default` builds, wayland + x11 + xcb are all built
    
    If someone were to remove the libraries that are needed for these,
    `default` would simply not enable these tests, and the only thing we
    could notice is that test jobs would suddenly take less time to run.
    
    Instead, let's have a check to make sure dEQP's cmake has detected
    everything and enabled these platforms.
    
    Reviewed-by: David Heidelberg <david.heidelberg@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27041>
    (cherry picked from commit 27a1b4e4f314832c164380ea332c096fe394c8f0)
    
  • a062b043
    by David Heidelberg at 2024-01-17T23:29:18+00:00
    ci/deqp: uprev deqp-runner for Linux too to 0.18.0
    
    Previous commit upreved deqp only for the Android
    
    Fixes: 1ff4687e8660 ("ci: uprev deqp-runner from 0.16.1 to 0.18.0")
    
    Signed-off-by: David Heidelberg <david.heidelberg@collabora.com>
    
    [Eric]
    - rename the deqp-runner version to DEQP_RUNNER_VERSION instead of DEQP_VERSION
    - update image tags
    - fix expectations lists
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27062>
    (cherry picked from commit 4ff77f08e476e37bf387178b5151093296491016)
    
  • 22c416e1
    by Eric Engestrom at 2024-01-18T13:07:49+00:00
    .pick_status.json: Update to d2b08f9437f692f6ff4be2512967973f18796cb2
    
  • ed75400a
    by Ryan Neph at 2024-01-18T13:07:51+00:00
    venus: fix shmem leak on vn_ring_destroy
    
    Missed shmem unref when moving ring internals out of vn_instance.c.
    
    Fixes: d1e29b75578 ("venus: move ring shmem into vn_ring")
    Signed-off-by: Ryan Neph <ryanneph@google.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27125>
    (cherry picked from commit 6e4bb8253ed36f911a0a45dfecf89c237a8cd362)
    
  • 2ff92193
    by Faith Ekstrand at 2024-01-18T13:07:54+00:00
    nvk: Unref shaders on pipeline free
    
    Fixes: d6a1e29ccdc1 ("nvk: pipeline shader cache")
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27130>
    (cherry picked from commit be0f04f5bd3155c05af14b2c8ffee887838af807)
    
  • 74ee323c
    by Dave Airlie at 2024-01-18T13:07:56+00:00
    radv/video: refactor sq start/end code to avoid decode hangs.
    
    The extra cmd buffer layer was done wrong, need to emit the
    sq start and ends around every reset/decode packet.
    
    Fixes dEQP-VK.video.decode.h264_i on navi3x
    
    Fixes: d8f3060bd915 ("radv/video: start adding gfx11 vcn decoder")
    Acked-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25932>
    (cherry picked from commit d32f2ee7b632b87c9ea8de66aa41423bf36f8268)
    
  • 085612fc
    by Dave Airlie at 2024-01-18T13:07:57+00:00
    radv: don't submit empty command buffers on encoder ring.
    
    the vcn enc/unified rings don't do nop packets, and hang with 0 sized
    cmd buffers. This just stops submitting 0 sized cmd buffers to the hw.
    
    Fixes hangs with dEQP-VK.video.decode.h264_i on navi3x
    
    Cc: mesa-stable
    Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25932>
    (cherry picked from commit f33683e4dad9e1dfb7dcd4f86bb86ef3e3954315)
    
  • bc9a92aa
    by Eric Engestrom at 2024-01-23T13:18:34+00:00
    .pick_status.json: Update to d0a3bac163ca803eda03feb3afea80e516568caf
    
  • ba54cfa0
    by Hans-Kristian Arntzen at 2024-01-23T13:19:02+00:00
    wsi/x11: Add workaround for Detroit Become Human.
    
    Game needs strict image count to not crash in non-vsync mode.
    
    Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
    Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27038>
    (cherry picked from commit efc0131d5bf42c7671b6ebcda61de06c9b954b11)
    
  • 219cd6dc
    by Ian Romanick at 2024-01-23T13:19:03+00:00
    intel/compiler: Disable DPAS instructions on MTL
    
    Reviewed-by: Mark Janes <markjanes@swizzler.org>
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Fixes: 3756f605586 ("intel/fs: DPAS lowering")
    Closes: #10376
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26993>
    (cherry picked from commit 951e08fc18a32f8a5ee9faa39cab69f8f0767e24)
    
  • 057493ce
    by Ian Romanick at 2024-01-23T13:19:04+00:00
    intel/compiler: Track lower_dpas flag in brw_get_compiler_config_value
    
    This user-settable flag affects compiler output, so it should be tracked
    in the cache hash.
    
    Fixes: 3756f605586 ("intel/fs: DPAS lowering")
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Suggested-by: Lionel Landwerlin
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26993>
    (cherry picked from commit 6f237a23c771e3dc74adc1cc0ab5cbc3e3b03be8)
    
  • b4285304
    by Ian Romanick at 2024-01-23T13:19:05+00:00
    intel/compiler: Track mue_compaction and mue_header_packing flags in brw_get_compiler_config_value
    
    v2: Use u_foreach_bit64. Suggested by Lionel.
    
    Fixes: 48885c7fe34 ("intel/compiler: load debug mesh compaction options once")
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26993>
    (cherry picked from commit 7481d61a5d5a8bef71c855182f1d958c4e6c4f0f)
    
  • 69cac7ae
    by Tapani Pälli at 2024-01-23T13:19:06+00:00
    iris: expand pre-hiz data cache flush to gfx >= 125
    
    Cc: mesa-stable
    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
    Reviewed-by: Sagar Ghuge <sagar.ghuge@intel.com>
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27132>
    (cherry picked from commit 93706d5c2fb8cd47fa444fd8598b5cb190cf74a7)
    
  • cfa818f1
    by Tapani Pälli at 2024-01-23T13:19:07+00:00
    anv: expand pre-hiz data cache flush to gfx >= 125
    
    Cc: mesa-stable
    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
    Reviewed-by: Sagar Ghuge <sagar.ghuge@intel.com>
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27132>
    (cherry picked from commit 02d7f5e4ff1a93d149778d8b40f327cccbb412ee)
    
  • 484a051a
    by Konstantin Seurer at 2024-01-23T13:19:58+00:00
    ac/llvm: Enable helper invocations for quad OPs
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9239
    cc: mesa-stable
    
    Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27110>
    (cherry picked from commit 220c91208037a499ff7a553f263d20e5844094a4)
    
  • 6d1dae87
    by Konstantin Seurer at 2024-01-23T13:19:59+00:00
    lavapipe: Fix DGC vertex buffer handling
    
    Fixes: 976dd26 ("lavapipe: NV_device_generated_commands")
    Reviewed-by: Dave Airlie <airlied@redhat.com>
    Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27019>
    (cherry picked from commit 6d88c1bb6ce7b64188ff1a19238a40d9218fd021)
    
  • 83b5a3a3
    by Konstantin Seurer at 2024-01-23T13:20:00+00:00
    lavapipe: Mark vertex elements dirty if the stride changed
    
    Fixes: 7672545 ("gallium: move vertex stride to CSO")
    Reviewed-by: Dave Airlie <airlied@redhat.com>
    Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27019>
    (cherry picked from commit cc94ff081c9b431dbb1242a04bd4efe0feaf5dde)
    
  • 364835c5
    by Konstantin Seurer at 2024-01-23T13:20:01+00:00
    lavapipe: Report the correct preprocess buffer size
    
    There can be multiple sequences.
    
    Fixes: 976dd26 ("lavapipe: NV_device_generated_commands")
    Reviewed-by: Dave Airlie <airlied@redhat.com>
    Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27019>
    (cherry picked from commit 024f144165f7b53e78bdd18f8b5afe11bf4e36e1)
    
  • 0392e4bf
    by Friedrich Vock at 2024-01-23T13:21:07+00:00
    radv: Fix shader replay allocation condition
    
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26891>
    (cherry picked from commit 43bdfebbff2c5557355df88816e737ef19618ed2)
    
  • e1d20b69
    by Daniel Schürmann at 2024-01-23T13:21:08+00:00
    aco: give spiller more room to assign spilled SGPRs to VGPRs
    
    On chordal graphs, a greedy coloring can be done in a way that never uses
    more colors than are required for the largest clique. However, since we
    have vector values and force phi resources into the same spill slots, the
    interference graphs are not chordal, and thus, this assumption doesn't hold.
    
    Use twice as many spill slots as upper bound.
    
    Totals from 10 (0.01% of 79242) affected shaders: (GFX11)
    MaxWaves: 52 -> 54 (+3.85%)
    Instrs: 271386 -> 271779 (+0.14%)
    CodeSize: 1362544 -> 1365432 (+0.21%)
    VGPRs: 2536 -> 2532 (-0.16%)
    SpillVGPRs: 778 -> 818 (+5.14%)
    Scratch: 73472 -> 76800 (+4.53%)
    Latency: 3331718 -> 3328798 (-0.09%); split: -0.14%, +0.05%
    InvThroughput: 1665860 -> 1643350 (-1.35%); split: -1.40%, +0.05%
    VClause: 3292 -> 3329 (+1.12%); split: -0.06%, +1.18%
    Copies: 46082 -> 46257 (+0.38%)
    
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27011>
    (cherry picked from commit e3098bb23284b598ec6d5030ceaa1c3d5bd9d428)
    
  • ebd56d7a
    by Georg Lehmann at 2024-01-23T13:21:08+00:00
    aco: stop scheduling at p_logical_end
    
    No Foz-DB changes, but this fixes some issues when the spiller inserts
    scratch loads after p_logical_end for p_return.
    
    Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
    
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27119>
    (cherry picked from commit 74fc2e287fc79b9451919b21957bc5d0ef186a5a)
    
  • 21d22653
    by Samuel Pitoiset at 2024-01-23T13:21:09+00:00
    radv: fix indirect dispatches on the compute queue on GFX7
    
    GFX7 CP requires the indirect dispatch VA to be aligned to 32-bytes.
    
    This fixes dEQP-VK.api.command_buffers.many_indirect_disps_on_secondary,
    but it's unexpected that it uncovered this bug.
    
    Cc: mesa-stable
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27148>
    (cherry picked from commit 5c03cdbd02a69884ce759e0cbd0cf76dc212e2d3)
    
  • 812bcc29
    by Samuel Pitoiset at 2024-01-23T13:21:10+00:00
    radv: fix indirect draws with NULL index buffer on GFX10
    
    GFX10 has a hw bug and it can't handle 0-sized index buffer. The
    non-indirect draw path was fine but not the indirect path where RADV
    emits the index buffer.
    
    This fixes flakes with dEQP-VK.*maintenance6* on NAVI14, and possibly
    GPU hangs if there is an indirect draw with a valid index buffer right
    before because it would re-use the same index buffer.
    
    Fixes: db9816fd666 ("radv: add support for NULL index buffer")
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27142>
    (cherry picked from commit 783e3c096fe34b06a251b3355330feac3a015e4e)
    
  • 2e4623bd
    by Eric R. Smith at 2024-01-23T13:21:14+00:00
    panfrost: fix panfrost drm-shim
    
    The panfrost driver now makes an ioctl to retrieve some new memory
    parameters, and DRM_PANFROST_PARAM_MEM_FEATURES is required (does not
    default in the caller). This caused drm-shim to stop working. This
    patch adds some defaults to get drm-shim working again.
    
    Signed-off-by: Eric R. Smith <eric.smith@collabora.com>
    Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
    Fixes: 91fe8a0d2859 ("panfrost: Back panfrost_device with pan_kmod_dev object")
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27162>
    (cherry picked from commit a50b2f8f258eb71984a3d63ca031b8051c380344)
    
  • 8039f6a5
    by Sil Vilerino at 2024-01-23T13:21:25+00:00
    d3d12: Implement cap for PIPE_VIDEO_CAP_ENC_INTRA_REFRESH
    
    Fixes: c81967fa89d ("d3d12: Implement Intra Refresh for H264, HEVC, AV1")
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27201>
    (cherry picked from commit a3c91624f487ee7676dfce0f8ed4e4c87ce2c0a2)
    
  • 95167b21
    by Yiwei Zhang at 2024-01-23T13:21:27+00:00
    venus: fix pipeline layout lifetime
    
    Should check the count instead of random ptr addr.
    
    Fixes: 19f2b9d0bbd ("venus: extend VkPipelineLayout lifetime for ...")
    Signed-off-by: Yiwei Zhang <zzyiwei@chromium.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27054>
    (cherry picked from commit b551b6e48a4b69e0b1b6eb36acfbebe359025c24)
    
  • 252a87e7
    by Yiwei Zhang at 2024-01-23T13:21:28+00:00
    venus: fix pipeline derivatives
    
    This was unexpected dropped in the initial GPL impl.
    
    Fixes: a65ac274acf ("venus: Do pipeline fixes for VK_EXT_graphics_pipeline_library")
    Signed-off-by: Yiwei Zhang <zzyiwei@chromium.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27054>
    (cherry picked from commit f713b17a16d7899ef78f85b91c14a46b9f91b3c8)
    
  • bfa31de5
    by Yiwei Zhang at 2024-01-23T13:21:29+00:00
    venus: fix to respect the final pipeline layout
    
    This fixes VUID-vkCmdDraw-None-08600 violation when running gpl cts:
    dEQP-VK...graphics_library.misc.bind_null_descriptor_set.*, where the
    final pipeline layout is falsely dropped, leading to incompatible with
    the pipeline layout of the bound descriptor set.
    
    Fixes: a65ac274acf ("venus: Do pipeline fixes for VK_EXT_graphics_pipeline_library")
    Signed-off-by: Yiwei Zhang <zzyiwei@chromium.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27054>
    (cherry picked from commit 80a5df16fe81d39fd771d5805b141c4eff623886)
    
  • e99d28b4
    by Lionel Landwerlin at 2024-01-23T19:49:06+00:00
    anv: fix pipeline executable properties with graphics libraries
    
    We're missing the ISA code in renderdoc. You can reproduce with the
    Sascha Willems graphics pipeline demo.
    
    The change is large here because we have to fix a confusion between
    anv_shader_bin & anv_pipeline_executable. anv_pipeline_executable is
    there as a representation for the user and multiple
    anv_pipeline_executable can point to a single anv_shader_bin.
    
    In this change we split the anv_shader_bin related logic that was
    added in anv_pipeline_add_executable*() and move it to a new
    anv_pipeline_account_shader() function.
    
    When importing RT libraries, we add all the anv_pipeline_executable
    from the libraries.
    
    When importing Gfx libraries, we add the anv_pipeline_executable only
    if not doing link time optimization.
    
    anv_shader_bin related properties are added whenever we're importing a
    shader from a library, compiling or finding in the cache.
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Fixes: 3d49cdb71e ("anv: implement VK_EXT_graphics_pipeline_library")
    Reviewed-by: Ivan Briano <ivan.briano@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26594>
    (cherry picked from commit 58c9f817cbed2fc5263c86b514730e54a2d9cbe4)
    
  • 72d36448
    by Lionel Landwerlin at 2024-01-23T19:49:07+00:00
    anv: implement undocumented tile cache flush requirements
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Cc: mesa-stable
    Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
    Reviewed-by: Ivan Briano <ivan.briano@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27169>
    (cherry picked from commit ba87656079a7fb745c06e78641d2fa6ac4112b82)
    
  • 7af4d666
    by Tapani Pälli at 2024-01-23T19:49:09+00:00
    iris: replace constant cache invalidate with hdc flush
    
    This implements Wa_14010840176.
    
    Cc: mesa-stable
    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/21364>
    (cherry picked from commit 231ede4f0ca92b33da8b16e7921af9877379c7d1)
    
  • 2a4f8de5
    by Caio Oliveira at 2024-01-23T20:21:13+00:00
    intel/compiler: Fix rebuilding the CFG in fs_combine_constants
    
    When building the CFG the instructions are taken of the list in
    fs_visitor and added to the lists inside each block.  The single
    "exec_node" in the instruction is used for those memberships.
    
    In the case the pass rebuilt the CFG, it had no instructions, so
    calculate_cfg() had nothing to work with.  For now fix the bug by
    pulling all the instructions back to the original list.
    
    We can do better here, but punting until upcoming work on
    CFG itself.
    
    Issue found in an unpublished CTS test.  Small reproduction in our
    unit tests now enabled.
    
    Fixes: 65237f8bbca ("intel/fs: Don't add MOV instructions to DO blocks in combine constants")
    Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27131>
    (cherry picked from commit 4dbf9181cd53baad71a2dba7b3a9198c57ba1941)
    
  • ee57c9df
    by Karol Herbst at 2024-01-23T20:34:30+00:00
    nir: rework and fix rotate lowering
    
    No driver supports urol/uror on all bit sizes. Intel gen11+ only for 16
    and 32 bit, Nvidia GV100+ only for 32 bit. Etnaviv can support it on 8,
    16 and 32 bit.
    
    Also turn the `lower` into a `has` option as only two drivers actually
    support `uror` and `urol` at this momemt.
    
    Fixes crashes with CL integer_rotate on iris and nouveau since we emit
    urol for `rotate`.
    
    v2: always lower 64 bit
    
    Fixes: fe0965afa6b ("spirv: Don't use libclc for rotate")
    Signed-off-by: Karol Herbst <kherbst@redhat.com>
    Reviewed-by (Intel and nir): Ian Romanick <ian.d.romanick@intel.com>
    
    Reviewed-by: David Heidelberg <david.heidelberg@collabora.com>
    Acked-by: Yonggang Luo <luoyonggang@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27090>
    (cherry picked from commit f2b7c4ce29b36556968ccf0480393180455d498a)
    
  • e2178ddc
    by Eric Engestrom at 2024-01-23T20:34:30+00:00
    .pick_status.json: Update to 90939e93f6657e1334a9c5edd05e80344b17ff66
    
  • 725af5b5
    by Karol Herbst at 2024-01-23T20:34:31+00:00
    nak/opt_out: fix comparison in try_combine_outs
    
    clippy complained it was comparing the same thing
    
    Fixes: 5b355ff25a7 ("nak: Fix opt_out")
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27216>
    (cherry picked from commit 0a414ecdf5b55bb5a1717693dbf0fbaba9867792)
    
  • b85673b0
    by Rhys Perry at 2024-01-23T20:34:31+00:00
    radv: do nir_shader_gather_info after radv_nir_lower_rt_abi
    
    Fixes compilation of a Doom Eternal shader with
    PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT.
    
    ac_nir_lower_resinfo() was not happening because it is predicated on
    uses_resource_info_query and no later optimization updated it.
    
    Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
    Reviewed-by: Friedrich Vock <friedrich.vock@gmx.de>
    Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27195>
    (cherry picked from commit 90939e93f6657e1334a9c5edd05e80344b17ff66)
    
  • 4410947e
    by Eric Engestrom at 2024-01-24T14:22:16+00:00
    .pick_status.json: Update to eca4f0f632b1e3e6e24bd12ee5f00522eb7d0fdb
    
  • 10596139
    by Rhys Perry at 2024-01-24T14:22:19+00:00
    nir/lower_non_uniform: set non_uniform=false when lowering is not needed
    
    Fixes RADV compilation of a Doom Eternal pipeline with
    PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, because
    nir_opt_non_uniform_access was skipped and later passes don't expect
    non-uniform access.
    
    Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
    Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Fixes: b1619109ca91 ("nir/lower_non_uniform: remove non_uniform flags after lowering")
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27192>
    (cherry picked from commit 015b0d678f8027008a5ae4cc3bb066a859839c8a)
    
  • 73dcdc7a
    by Rhys Perry at 2024-01-24T14:22:20+00:00
    nir/lower_shader_calls: remove CF before nir_opt_if
    
    Otherwise, opt_if_simplification() can attempt to insert an inot after a
    jump.
    
    Fixes RADV compilation of a Cyberpunk 2077 pipeline with
    PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT.
    
    Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27193>
    (cherry picked from commit e465ac25618b3ce2d8666b5015101414f05f9876)
    
  • d2094c1e
    by Boris Brezillon at 2024-01-24T14:22:21+00:00
    panfrost: Clamp the render area to the damage region
    
    The render area clamping was lost during the transition to the FB
    helpers. Restore the original logic so we can benefit from
    EGL_KHR_partial_update on v4, and on v5 when only one damage
    rectangle is passed.
    
    Fixes: ff3eada7eb4e ("panfrost: Use the generic preload and FB helpers in the gallium driver")
    Reported-by: Sjoerd Simons <sjoerd.simons@collabora.com>
    Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
    Tested-by: Sjoerd Simons <sjoerd.simons@collabora.com>
    Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27215>
    (cherry picked from commit f6f7715c5824922e867aa739c587eb1718db66c1)
    
  • 466ae8c3
    by Friedrich Vock at 2024-01-24T14:22:22+00:00
    nir: Make is_trivial_deref_cast public
    
    Cc: mesa-stable
    
    Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27197>
    (cherry picked from commit 6c845ed548f87fdade9293c83858f2876d3b7cc6)
    
  • 3f1d5726
    by Friedrich Vock at 2024-01-24T14:22:23+00:00
    nir: Handle casts in nir_opt_copy_prop_vars
    
    Cc: mesa-stable
    
    Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27197>
    (cherry picked from commit 9f22b95956cb11ccba12dd9f7e4510851fb744a3)
    
  • d25222c7
    by Karol Herbst at 2024-01-24T14:22:24+00:00
    rusticl/kernel: check that local size on dispatch doesn't exceed limits
    
    Cc: mesa-stable
    Signed-off-by: Karol Herbst <kherbst@redhat.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27232>
    (cherry picked from commit eca4f0f632b1e3e6e24bd12ee5f00522eb7d0fdb)
    
  • 808f0566
    by Eric Engestrom at 2024-01-24T20:01:30+00:00
    VERSION: bump for 24.0.0-rc3
    

30 changed files:

The diff was not included because it is too large.

Reply to: