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

[Git][xorg-team/lib/mesa][upstream-unstable] 44 commits: docs: Add sha256 sum for 22.2.1



Title: GitLab

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

Commits:

  • 61080039
    by Dylan Baker at 2022-10-11T12:09:25-07:00
    docs: Add sha256 sum for 22.2.1
    
  • 7173cb4f
    by Dylan Baker at 2022-10-11T13:26:57-07:00
    .pick_status.json: Update to 243aa6b2ec0c2626b1333ba666a6d6d60ede8505
    
  • c66624f5
    by Emma Anholt at 2022-10-11T13:27:11-07:00
    turnip: Don't use the dynamic color write enable during non-dynamic.
    
    We have the correct merged color write enable state as a local var here,
    use that instead of the zero cmd->state.color_write_enable.  Fixes
    blending in many traces with ANGLE on turnip.  In the process of fixing,
    clarify the logic a little bit.
    
    Fixes: 169e03800d0f ("tu: Implement VK_EXT_color_write_enable")
    Fixes: #7328
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18956>
    (cherry picked from commit dadb29cf2e21ba6b28a2d9ac62dd4ff13f7df9a2)
    
  • 52eac47f
    by Alejandro Tafalla at 2022-10-11T13:27:12-07:00
    freedreno: Fix graphic glitches on a4xx and a5xx
    
    Like on adreno 3xx, hw binning and scissor optimizations don't work correctly
    together on a4xx and a5xx GPUs.
    
    Disable binning as a workaround if scissor optimizations are being used.
    
    Fixes: f68c6951b86a 8efaae3e1969
    
    Signed-off-by: Alejandro Tafalla <atafalla@dnyon.com>
    Reviewed-by: Rob Clark <robdclark@chromium.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18925>
    (cherry picked from commit afe4b534b52af41ba3265c7150e012f8577d03b7)
    
  • 4760c763
    by Gert Wollny at 2022-10-11T13:27:13-07:00
    r600/sfn: Always start a new CF after a KILL instruction
    
    Docu says:
    
       Ensure that the KILL* instruction is the last instruction
       in an ALU clause, because the remaining instructions executed
       in the clause do not reflect the updated valid state after
       the kill operation.
    
    Fixes: 79ca456b4837b3bc21cf9ef3c03c505c4b4909f6
        r600/sfn: rewrite NIR backend
    
    Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18983>
    (cherry picked from commit 99b7a12ec12d5d76826051772fe474a547582e5e)
    
  • 87f92ebd
    by Gert Wollny at 2022-10-11T13:27:13-07:00
    r600/sfn: don't propagate registers into conditional test
    
    We don't check whether the register is overwritten between the actual
    conditional test and the test of the used result, so don't try to
    optimize the evaluation of the conditional.
    
    Fixes: 79ca456b4837b3bc21cf9ef3c03c505c4b4909f6
       r600/sfn: rewrite NIR backend
    
    Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18983>
    (cherry picked from commit 6de40d17baf403978dd136dbbc36c0167dbf7ef9)
    
  • beb3819d
    by Diogo Ivo at 2022-10-11T13:27:14-07:00
    nouveau: treat DRM_FORMAT_INVALID as implicit modifier
    
    Failing to allocate resources when DRM_FORMAT_INVALID
    is passed as a modifier breaks tegra. Change this behaviour
    so that this modifier is instead interpreted as a don't care,
    allowing for the driver to choose an appropriate modifier internally.
    
    v2: change nouveau instead of tegra (Thierry Rieding)
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6693
    Fixes: 129d83cac2a ("nouveau: Use format modifiers in buffer allocation")
    Signed-off-by: Diogo Ivo <diogo.ivo@tecnico.ulisboa.pt>
    Reviewed-by: Thierry Reding <treding@nvidia.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18649>
    (cherry picked from commit 941c70a28a8db3a852ca5245354effa2bf1e7cf8)
    
  • db241762
    by Erik Faye-Lund at 2022-10-11T13:27:14-07:00
    gallium/u_threaded_context: remove stale comment
    
    We're now using PIPE_SHADER_MAX_SAMPLER_VIEWS, so this advice is
    outdated.
    
    Fixes: 620c5e9dd05 ("gallium/u_threaded_context: Use PIPE_MAX_SHADER_SAMPLER_VIEWS for sampler_buffers")
    Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18973>
    (cherry picked from commit b666c203eed8c3bd0825b23c65bfb79c4be53735)
    
  • 753f3a7d
    by Timothy Arceri at 2022-10-11T13:27:16-07:00
    util/conf: enable init to zero workaround for Exanima
    
    Fixes rendering issues on llvmpipe.
    
    Issue: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6449
    
    Cc: mesa-stable
    Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18935>
    (cherry picked from commit 3200b5c46b2f62d01c1d942f1c54439f972c66fe)
    
  • 199f2fe9
    by Timothy Arceri at 2022-10-11T13:27:16-07:00
    util/radeonsi: enable zerovram workaround for Exanima
    
    The issue is very intermittent and can sometimes work fine
    without the workaround but turning it on seems to resolve
    any issues.
    
    Issue: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6449
    
    Cc: mesa-stable
    Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18935>
    (cherry picked from commit 98944b327b47c4ba401c829ebeb71f9c6bd2abc9)
    
  • 542475c0
    by Filip Gawin at 2022-10-11T13:27:17-07:00
    r300: don't use smooth line if not requested
    
    Makes these tests passing:
    dEQP-GLES2.functional.rasterization.interpolation.basic.line_loop_wide,UnexpectedPass
    dEQP-GLES2.functional.rasterization.interpolation.basic.lines_wide,UnexpectedPass
    dEQP-GLES2.functional.rasterization.interpolation.projected.line_loop_wide,UnexpectedPass
    dEQP-GLES2.functional.rasterization.interpolation.projected.line_strip_wide,UnexpectedPass
    dEQP-GLES2.functional.rasterization.interpolation.projected.lines_wide,UnexpectedPass
    dEQP-GLES2.functional.rasterization.primitives.line_loop,UnexpectedPass
    dEQP-GLES2.functional.rasterization.primitives.line_strip,UnexpectedPass
    dEQP-GLES2.functional.rasterization.primitives.lines,UnexpectedPass
    dEQP-GLES2.functional.rasterization.primitives.lines_wide,UnexpectedPass
    
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18979>
    (cherry picked from commit 4e7b9aaa066e0ea03dc408193211c423896e603c)
    
  • 12b9969f
    by pal1000 at 2022-10-11T13:27:18-07:00
    clc/clover: Link clang statically when shared-llvm is disabled
    
    Makes things easier to handle when aiming for a static build
    
    Cc: mesa-stable
    
    Reviewed-by: Karol Herbst <kherbst@redhat.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18117>
    (cherry picked from commit ed2743eae59ac71622395299e522c091ddcee722)
    
  • 9a3f61d9
    by Danylo Piliaiev at 2022-10-11T13:27:19-07:00
    tu: Reset whether there is DS resolve for dynamic subpass
    
    Otherwise we use old invalid value.
    
    Relevant CTS tests:
     dEQP-VK.pipeline.monolithic.multisample.misc.dynamic_rendering.multi_renderpass.r8g8b8a8_unorm_r16g16b16a16_sfloat_r16g16b16a16_*
    
    Fixes: ed125e6cca188275631641784fcf3ddcbcfef193
    ("tu: Initial support for dynamic rendering")
    
    Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18999>
    (cherry picked from commit a1c372cd847cddd2baf8fb74aa3c04bed4ca0397)
    
  • 0e2fa1aa
    by Timothy Arceri at 2022-10-11T13:27:20-07:00
    radv: add radv_zero_vram workarounds for OpenGL games
    
    These are needed if the games are running on radv via zink.
    
    Tested with "7 Days to Die"
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6449
    Cc: mesa-stable
    
    Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19031>
    (cherry picked from commit ca0c429d32b3c24d8b4923111950795dbaa710f2)
    
  • 40d73e5c
    by Dylan Baker at 2022-10-12T09:23:03-07:00
    .pick_status.json: Update to c4482a3c1a973975eb27ac284a18bebca24f7876
    
  • 07734660
    by SoroushIMG at 2022-10-12T09:23:15-07:00
    zink: fix invalid Offset set for variables which do not need an offset
    
    Offset decoration in spirv is unsigned and it does not have a notion of an invalid offset.
    Unlike NIR which set -1 for invlaid offset. This translates to invalid spirv being produced.
    Instead, just don't emit an Offset decoration.
    
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18910>
    (cherry picked from commit b87c08b3bf707f25df2b788260381aea161d5dd8)
    
  • c7ff53ae
    by SoroushIMG at 2022-10-12T09:23:16-07:00
    zink: stop enabling minmax filtering when not supported
    
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18910>
    (cherry picked from commit a730b1bb0a43c9bf8b57269744a12b8fbdbd460f)
    
  • d9f98992
    by SoroushIMG at 2022-10-12T09:23:17-07:00
    zink: fix isNan mismatch between NIR and SPIR-V
    
    SPIR-V and Vulkan allow implementations to optimize
    float ops assuming inputs are not NaN unless SignedZeroInfNanPreserve
    execution mode is enabled.
    
    This means isnan which is turned to nir_op_fneu(a,a) and then emitted
    as SpvOpFUnordNotEqual could potentially be optimised to a const 0.
    
    isnan is special in this approach and therefore recognise this pattern,
    and emit SpvOpIsNan instead of enabling SignedZeroInfNanPreserve which
    will hurt performace of some vulkan drivers.
    
    Fixes dEQP-GL45-ES31.functional.shaders.builtin_functions.common.isnan.*
    
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18910>
    (cherry picked from commit 69c22dd81736ee825d345078ffb252b39190e89d)
    
  • a6ac6084
    by Dylan Baker at 2022-10-17T13:41:20-07:00
    .pick_status.json: Update to 3eed5931edf6e5f45378b013ca21f98f17af2b34
    
  • a9dcaf14
    by Alyssa Rosenzweig at 2022-10-17T13:41:27-07:00
    nir/lower_system_values: Fix cs_local_index_to_id with variable workgroups
    
    In that case we need to use the sysval. That sysval can be optimized anyway in
    the nonvariable case. Fixes test_basic.get_linear_ids on panfrost.
    
    Fixes: 998d84fca56 ("nir/lower_system_values: Support lowering more intrinsics")
    Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
    Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
    Reviewed-by: Jason Ekstrand <jason.ekstrand@collabora.com>
    Reviewed-by: Karol Herbst <kherbst@redhat.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18662>
    (cherry picked from commit f4b03ea6dc0ac0f02f780ba809c3ea551a72f947)
    
  • 4631b956
    by Timothy Arceri at 2022-10-17T13:41:28-07:00
    glthread: fix matrix stack depth tracking
    
    Dont bump the depth if the application attempts to overflow or
    underflow the stack.
    
    Fixes: 6febe2b880e7 ("glthread: track all matrix stack depths")
    
    Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19059>
    (cherry picked from commit a5e9e64aae2e94209e64fbb75c7b03aab3b0d39b)
    
  • 6fc9dc68
    by Mike Blumenkrantz at 2022-10-17T13:41:31-07:00
    zink: clamp line_stipple_factor to 1 if stipple is disabled
    
    0 is technically an illegal value even though it won't be read in this case
    
    cc: mesa-stable
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19065>
    (cherry picked from commit f72071fbc35a703c058b4113ca91559774c70e77)
    
  • 266850c3
    by Mike Blumenkrantz at 2022-10-17T13:41:31-07:00
    zink: unset rp_changed after initializing renderpass attachments
    
    if fbfetch is setup here, it will flag rp_changed
    
    this is already inside renderpass setup, however, so just unset it
    to avoid erroneously trigering the assert
    
    cc: mesa-stable
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19065>
    (cherry picked from commit 1ae26de36f51520d4285777c435e918b31dc442a)
    
  • ab1dffa8
    by Mike Blumenkrantz at 2022-10-17T13:41:32-07:00
    zink: disable fbfetch when flushing clears
    
    this ensures there's no weird perf happening, avoids using renderpass
    instead of dynamic rendering, and avoids hitting an assert from broken
    framebuffer construction
    
    cc: mesa-stable
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19065>
    (cherry picked from commit d3880a632456879a1c06320879aa684c1886f438)
    
  • 688deb26
    by Ryan Houdek at 2022-10-17T13:41:33-07:00
    vulkan/wsi: Add dep_libudev to idep dependencies
    
    Otherwise users of `idep_vulkan_wsi` won't pull in the udev dependency,
    which will cause the linker to fail later on in compiling.
    
    The user of this dependency is lavapipe which would fail to link if this
    isn't provided.
    
    Fixes: 4885e63a6d20c57f98b7b641ea3c39a8ff3ae2dd (vulkan/wsi: implement missing wsi_register_device_event)
    
    Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19037>
    (cherry picked from commit b516f59490581ff0be4773bf482648fc82f31b3a)
    
  • 19ac65f5
    by Lionel Landwerlin at 2022-10-17T13:41:33-07:00
    vulkan/runtime: don't lookup the pipeline disk cache if disabled
    
    When the Anv pipeline got migrated to the runtime, we gain/lost a bit
    of functionality which is that the disk cache is always read
    regardless of VK_ENABLE_PIPELINE_CACHE=0.
    
    This change brings the old behavior back.
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Fixes: 591da9877900c ("vulkan: Add a common VkPipelineCache implementation")
    Reviewed-by: Emma Anholt <emma@anholt.net>
    Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19050>
    (cherry picked from commit cea113c97705ea659821a8cc8c330ded4c2e477a)
    
  • 9ef9b9e6
    by Lionel Landwerlin at 2022-10-17T13:41:34-07:00
    anv: initialization pipeline layout to 0s
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Cc: mesa-stable
    Reviewed-by: Emma Anholt <emma@anholt.net>
    Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19050>
    (cherry picked from commit 01e282f23fe8ef2240b6fde35ad57f7397e0d88a)
    
  • a6fcc625
    by Andri Yngvason at 2022-10-17T13:41:34-07:00
    gallium/vl: Add opaque rgb pixel formats
    
    Signed-off-by: Andri Yngvason <andri@yngvason.is>
    Reviewed-by: Simon Ser <contact@emersion.fr>
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18959>
    (cherry picked from commit 9fc4cb8067e54ae79751900739739592fa89f309)
    
  • 1a52e9be
    by Yonggang Luo at 2022-10-17T13:56:06-07:00
    util: Turn -DWINDOWS_NO_FUTEX to be pre_args
    
    Turn -DWINDOWS_NO_FUTEX to be pre_args for not need add direct dependencies
    to dep_futex for libraries and executables.
    So only add dependencies to idep_mesautil is enough.
    
    And this will make sure all source code are either using Windows futex,
    or use mtx_t consistently across different sources, other than mixed usage of
    futex and mtx_t before this commit.
    
    If -DWINDOWS_NO_FUTEX is not globally available, that would cause
    /src/util/simple_mtx.h:116: undefined reference to `futex_wait'
    
    This error is raised when
     * compiled with -D min-windows-version=7
     * moved futex_wait from futex.h to futex.c
     * used simple_mtx_t in more codes
    
    Or linkage error:
    src/compiler/libcompiler.a.p/glsl_types.cpp.obj: in function `futex_wake':
    /../../src/util/futex.h:154: undefined reference to `WaitOnAddress'
    When:
     * compiled with -D min-windows-version=7
     * used simple_mtx_t in more codes
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7494
    Fixes: c002bbeb2f7 ("util: Add a Win32 futex impl")
    
    Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
    Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19087>
    (cherry picked from commit 2b64ff92843339de4321d1c2f9da6931d0533912)
    
  • 18a57663
    by Timothy Arceri at 2022-10-17T13:56:06-07:00
    glthread: leave dlist dispatch in place for Begin/End
    
    If Begin/End are called from a display list make sure to leave
    the dlist.c's dispatch table in place just like the non-glthread
    code does.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7335
    Fixes: 7f1cac7ba682 ("mesa/glthread: enable immediate mode")
    
    Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19088>
    (cherry picked from commit 7dcdd519385aaa4fddfa1368fbbbc89c408befe3)
    
  • 9a7a0279
    by Alyssa Rosenzweig at 2022-10-17T13:56:06-07:00
    pan/mdg: Lower PIPE_COMPUTE_CAP_MAX_THREADS_PER_BLOCK on Midgard
    
    The register file on Midgard is not large enough to sustain 256 threads in a
    threadgroup when all ISA-defined registers are used. As such, we want
    to advertise the smallest MAX_THREADS_PER_BLOCK permissible by the spec to
    avoid compiling shaders that will necessarily spill. The minimum-maximum in
    OpenGL ES 3.1 is 128, so set that on Midgard.
    
    6 compute shaders LOST in shader-db due to exceeding this new limit. These
    shaders would fault if they were attempted to be executed.
    
    Cc: mesa-stable
    Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19092>
    (cherry picked from commit 9b19104a30bba35c4025833d5022c8ddc6c1ccd0)
    
  • 86f250ac
    by Alyssa Rosenzweig at 2022-10-17T13:56:06-07:00
    pan/mdg: Fix 16-bit alignment with spiller
    
    The loop over sources has to happen for every instruction, regardless of whether
    we also need to register allocate the destination. The other source loops handle
    this properly, but this one was missed.
    
    Fixes spilling failure in shaders/android/angle/aztec_ruins/16.shader_test when
    the input NIR is shuffled a bit (from reordering passes).
    
    Fixes: 129d390bd8c ("pan/mdg: Fix bound setting in RA for sources")
    Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19093>
    (cherry picked from commit 829f769e602a7bbff4a0603076cb74ce9a966e8e)
    
  • f9dc71ce
    by Daniel Schürmann at 2022-10-17T13:56:06-07:00
    aco/spill: Fix spilling of Phi operands
    
    By adding the renamed variable, phi operands got spilled twice at the precessors.
    
    Fixes: dEQP-VK.ray_query.misc.dynamic_indexing
    Closes: #7493
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19109>
    (cherry picked from commit ebf7f7a1827006394fc6355ee245e45b6cfe2793)
    
  • 9c1d08b9
    by Dylan Baker at 2022-10-18T09:41:14-07:00
    .pick_status.json: Update to b02e9ef35a0446019cda9473e4c355c7cc4bb24d
    
  • d39f908b
    by Dylan Baker at 2022-10-18T09:41:20-07:00
    .pick_status.json: Mark 4c7a44413a07d3fb314f786e047bb7212c082a6c as denominated
    
  • f1328901
    by Alyssa Rosenzweig at 2022-10-18T09:41:23-07:00
    nir: Fix nir_fmax_abs_vec_comp
    
    This failed to take fabs of the first component, implementing an unintended
    formula that would return the right results in some common cases but is wrong in
    general:
    
       max { x, |y|, |z| }
    
    instead of the intended
    
       max { |x|, |y|, |z| }
    
    Reexpress the implementation to make correctness obvious.
    
    Fixes: 272e927d0e9 ("nir/spirv: initial handling of OpenCL.std extension opcodes")
    Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
    Reviewed-by: Karol Herbst <kherbst@redhat.com>
    Reviewed-by: Jason Ekstrand <jason.ekstrand@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18754>
    (cherry picked from commit fc5c671e8785c89cf986181e0e3e7fa8742c4dce)
    
  • 6a8e5934
    by Dylan Baker at 2022-10-18T09:44:18-07:00
    .pick_status.json: Mark dbd022f2ab43ff0a9ecc05c61123467e25f109de as backported
    
  • 30511c9e
    by Sil Vilerino at 2022-10-18T09:46:21-07:00
    gallium/va: vaDeriveImage to check PIPE_VIDEO_SUPPORTS_CONTIGUOUS_PLANES_MAP
    
    vaDeriveImage should check if the underlying gallium driver can map contiguous planes
    before skipping with disallowlist.
    
    Fixes: a585d95803ca38d42b893603a85bf6442a54838a ("radeonsi/vcn: WA 10bit encoding crash in vaapi")
    
    Reviewed-by: Ruijing Dong <ruijing.dong@amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18300>
    (cherry picked from commit 81ae033b949953ef0c43edef3d0eb12e4741ee2e)
    
    Conflicts:
    	src/gallium/include/pipe/p_video_enums.h
    
  • e2472db4
    by Sil Vilerino at 2022-10-18T09:46:23-07:00
    d3d12: Implement cap PIPE_VIDEO_SUPPORTS_CONTIGUOUS_PLANES_MAP
    
    Reports d3d12 support for mapping all the contiguous planes.
    This will be used by vaDeriveImage in the VA frontend
    
    Fixes: a585d95803ca38d42b893603a85bf6442a54838a ("radeonsi/vcn: WA 10bit encoding crash in vaapi")
    
    Reviewed-by: Ruijing Dong <ruijing.dong@amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18300>
    (cherry picked from commit a1f904f7a3de33299932645296d481cda2163683)
    
  • 3ae1f012
    by Gert Wollny at 2022-10-18T09:53:54-07:00
    virgl: Report CONSTANT_BUFFER_SIZE according to GL_MAX_UNIFORM_BLOCK_SIZE
    
    GL_MAX_FRAGMENT_UNIFORM_COMPONENTS may not report a size that
    is useful to calculate the supported UBO size. Use the value
    GL_MAX_UNIFORM_BLOCK_SIZE instead when the host supports this.
    
    Related: https://gitlab.freedesktop.org/virgl/virglrenderer/-/issues/286
    Fixes: 5b683ba19ac77d6c7dfd8de478678d0b90ba764f
      virgl: Only progagate the uniform numbers if the numbers are actually right
    
    Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18512>
    (cherry picked from commit 95cea62a9b7b4b2caa3835e4f5e04d83df1de0a3)
    
    Conflicts:
    	src/virtio/virtio-gpu/virgl_hw.h
    
  • ab947b57
    by Lionel Landwerlin at 2022-10-18T09:58:46-07:00
    anv: add missing tracepoint
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
    Fixes: 3501a3f9ed92 ("anv: Convert to 100% dynamic rendering")
    Reviewed-by: Ivan Briano <ivan.briano@intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17467>
    (cherry picked from commit b12d95f5132f0899cd77d4c5f4ac656261b5e76b)
    
    Conflicts:
    	src/intel/vulkan/genX_cmd_buffer.c
    
  • aa1df868
    by Dave Airlie at 2022-10-18T10:03:57-07:00
    gallivm: handle llvm coroutines for llvm > 15
    
    LLVM 15 changed the coroutine presplit function attribute in
    
    735e6c40b5e9 [Coroutines] Convert coroutine.presplit to enum attr
    
    This needed to be updated in mesa.
    
    Cc: mesa-stable
    Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18815>
    (cherry picked from commit bcb136d548e607dbc9b72df0f575710ee03947ec)
    
    Conflicts:
    	src/gallium/auxiliary/gallivm/lp_bld_intr.h
    
  • 247d83cc
    by Dylan Baker at 2022-10-19T09:50:22-07:00
    docs: add release notes for 22.2.2
    
  • c4f06862
    by Dylan Baker at 2022-10-19T09:50:22-07:00
    VERSION: update to 22.2.2
    

30 changed files:

The diff was not included because it is too large.

Reply to: