URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=44eb06247e77e510121b2550f38d57d9c3265b73
Author: Rhys Perry <[email protected]>
Date:   Thu Feb 23 17:09:40 2023 +0000

    aco: always update orig_names in get_reg_phi()
    
    No idea why this wasn't done if pc.first was a renamed temporary.
    
    Fixes navi10 RA validation error with
    
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers
    
    Signed-off-by: Rhys Perry <[email protected]>
    Reviewed-by: Daniel Schürmann <[email protected]>
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8349
    Cc: mesa-stable
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21501>
    (cherry picked from commit 75d9a4a6ce5957803963a1df2c18b34991c62506)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=784b7529816ff531687c2b61973f0e4fa0818d83
Author: Eric Engestrom <[email protected]>
Date:   Fri Feb 24 10:57:24 2023 +0000

    radv: split linker script for android since it requires different symbols
    
    Fixes: 4956f6d0bf477568731f ("radv: Add Android module info to linker 
script.")
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8338
    Signed-off-by: Eric Engestrom <[email protected]>
    Reviewed-by: Samuel Pitoiset <[email protected]>
    Acked-by: David Heidelberg <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21518>
    (cherry picked from commit 735df516e9ccbaea57f34942388e164ad04e6b02)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=77a5590de3e026458a5ba503cb9bd2bdf298a05b
Author: Mike Blumenkrantz <[email protected]>
Date:   Fri Feb 24 10:32:10 2023 -0500

    zink: avoid adding ubo/ssbo bindings multiple times for different bitsizes
    
    these are valid variables, but the descriptor binding needs to be unique
    
    cc: mesa-stable
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21522>
    (cherry picked from commit a7b98dd4be8946856da8e6fe1a33758d864b5775)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=5f7806b4169bd200c50cae21cc5c5cfc39c5cc7c
Author: Mike Blumenkrantz <[email protected]>
Date:   Fri Feb 24 11:03:57 2023 -0500

    zink: fix shader read access removal for barrier generation
    
    barrier access is based on total binds per gfx/compute, not per stage
    
    cc: mesa-stable
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21522>
    (cherry picked from commit ddb116d75517070876155bb5e050b66eaa96fa8f)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=45fab91421c37ce6638abc8e2dc1a670f58f58ae
Author: Marek Olšák <[email protected]>
Date:   Fri Feb 24 15:40:47 2023 -0500

    nir: lower to fragment_mask_fetch/load_amd with EQAA correctly
    
    Fixes: 194add2c232 ("nir: lower image add lower_to_fragment_mask_load_amd 
option")
    Reviewed-by: Qiang Yu <[email protected]>
    Signed-off-by: Marek Olšák <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21436>
    (cherry picked from commit 0c8e7ad47e945425ff1d4bd38656064c35ffda70)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=e8132999ae0a366efaf54f7cd6edf5f70d4b8930
Author: Friedrich Vock <[email protected]>
Date:   Thu Feb 23 20:00:23 2023 +0100

    docs: Fix formatting for RMV tracing docs
    
    Fixes: e1cbff22 ("docs: Add short documentation about RMV tracing 
variables")
    Reviewed-by: Erik Faye-Lund <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21502>
    (cherry picked from commit de4e3da4c42ba4c2ce4c45b1db59f25f2858b014)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=cfe483ac1a3d149869ddc36e05b0d07a239424e4
Author: Gert Wollny <[email protected]>
Date:   Fri Feb 24 17:27:30 2023 +0100

    r600/sfn: Fix minimum required registers
    
    Don't count the local registers, just the arrays, because local
    registers might be renamed during register allocation.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8100
    
    Fixes: 9fd9f3cd10cf58549f850aeca9103d8cca5a5f81
       r600/sfn: Set minimum required registers based on array allocation
    
    Signed-off-by: Gert Wollny <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21523>
    (cherry picked from commit 182066538f31051ebeb8216e181bec5721d886af)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=ed3e6b1d18a02001c5b3c9ce9fa46333cf52fa08
Author: Iván Briano <[email protected]>
Date:   Thu Feb 23 14:41:54 2023 -0800

    anv: stop tracking color blend state in the pipeline
    
    Now that all color blend bits are dynamic, emit_cb_state() is doing
    almost nothing and half of that is wrong.
    
    In the case that color write enable is dynamic, at the time the pipeline
    state is emitted, it sees all the color attachments as having write
    disabled and stores the WriteDisabled bit for each channel.
    When all dynamic state is flushed, we have the right values already but
    the values recorded into the command buffer get ORed with the ones
    stored in the pipeline, and so WriteDisabled tag along when they
    shouldn't.
    
    Since all disabled color attachments are handled already when dynamic
    state is flushed, there's no point in doing so at pipeline creation
    time too. And since the only other thing done by emit_cb_state() is
    writing three hardcoded values, they might as well be taken care of in
    the same place as everything else.
    
    Fixes CTS from the future:
    dEQP-VK.pipeline.*.extended_dynamic_state.*.color_blend_equation_*dynamic*
    dEQP-VK.pipeline.*.extended_dynamic_state.*.color_blend_all_*
    
    Fixes: fc3fd7c69e8 (anv: dynamic color write mask)
    
    Reviewed-by: Lionel Landwerlin <[email protected]>
    Reviewed-by: Tapani Pälli <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21509>
    (cherry picked from commit b71957635f1ef890cef954cf5b8493b7e62bf728)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=e98fbda58116dd2e97991829fbc2e814ddac4156
Author: Iván Briano <[email protected]>
Date:   Thu Feb 23 12:20:56 2023 -0800

    anv: fix testing for dynamic color blend bits
    
    Fixes: fc3fd7c69e8 (anv: dynamic color write mask)
    Fixes: 9dc6bed9a10 (anv: dynamic state for logic op enable)
    
    Reviewed-by: Lionel Landwerlin <[email protected]>
    Reviewed-by: Tapani Pälli <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21509>
    (cherry picked from commit dd5c6446b4f7a4f8a969ec9d932242f7c6a703eb)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=2da7b58139ed7996a6b1bad1effec1e1199f1b39
Author: Iván Briano <[email protected]>
Date:   Thu Feb 23 11:52:58 2023 -0800

    vulkan: track the right value on CmdSetColorWriteMasks
    
    Fixes: 092be5a3290 ("vulkan: Add more dynamic color blend states")
    
    Reviewed-by: Lionel Landwerlin <[email protected]>
    Reviewed-by: Tapani Pälli <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21509>
    (cherry picked from commit 6e60612d4275778afaa6175e3f70965eff8d31b3)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=a816d0c7a8bf6f48c07468c7823f2845bef237fb
Author: Marek Olšák <[email protected]>
Date:   Sat Feb 18 04:51:28 2023 -0500

    radeonsi: disable Smart Access Memory because CPU access has large overhead
    
    It will be remove completely in the next commit.
    
    Related: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8176
    
    Cc: mesa-stable
    
    Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21525>
    (cherry picked from commit d8b17b17526b46d69e4102a883ba451e7f1db148)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=a8ff70af5dd9e0ed9514351a605211e9bf1ee21b
Author: Marek Olšák <[email protected]>
Date:   Tue Jan 24 03:53:36 2023 -0500

    radeonsi/gfx11: set CB_COLORi_INFO.MAX_COMP_FRAG on GFX1103_R2
    
    Fixes: caa09f66ae4 - amd: add chip identification for gfx1100-1103
    
    Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21525>
    (cherry picked from commit ee83ba57716644788468f666e0138c142b3d403c)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=fab5d33190eab215b485977f2bc2f7bddd77d59a
Author: Marek Olšák <[email protected]>
Date:   Tue Feb 7 22:48:41 2023 -0500

    radeonsi/gfx11: don't set non-existent VGT_STRMOUT_BUFFER_CONFIG
    
    Fixes: 9fecac091f3 - radeonsi/gfx11: scattered register deltas
    
    Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21525>
    (cherry picked from commit c54635a0333bb225e2d52113e697bcf444abecc1)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=cbf1c106a19d1d6d376f037ddc10adda299b4a7c
Author: Marek Olšák <[email protected]>
Date:   Sun Feb 5 00:13:50 2023 -0500

    radeonsi/gfx11: fix the CU_EN clear mask for RSRC4_GS
    
    Fixes: 9fecac091f3 - radeonsi/gfx11: scattered register deltas
    
    Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21525>
    (cherry picked from commit 31438fbab5674147662170bc13d66389cecb35ad)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=ded180720d25f9f446ab6b9918507d13fbd2b57a
Author: Marek Olšák <[email protected]>
Date:   Tue Jan 24 03:49:42 2023 -0500

    amd: add missing gfx11 register definitions
    
    Fixes: caa09f66ae4 - amd: add chip identification for gfx1100-1103
    
    Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21525>
    (cherry picked from commit 63b21e3066a451415917472228b05f71b34d1a48)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=364e16059bb1b91e525d585059f3cb59efc00b69
Author: Gert Wollny <[email protected]>
Date:   Fri Feb 24 10:14:01 2023 +0100

    r600/sfn: be more conservative with channel use in multi-slot ops
    
    The current approach to check the bank swizzle doesn't allow to
    re-evaluate bank-swizzle for instructions that where emitted
    earlier, so we might end up with impossile constellations when we
    allow three uses of the same channel
    
    Fixes: edabd5cd8425
      r600/sfn: check used channels when evaluating allowed mask
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8350
    
    Signed-off-by: Gert Wollny <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21516>
    (cherry picked from commit b5b7ca0ad31797aca9ad6b48341372c05e077750)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=750dff3b0cb0810942f301c7481d94586f05e701
Author: Sviatoslav Peleshko <[email protected]>
Date:   Wed Feb 22 04:24:09 2023 +0200

    anv: Move WA MEDIA_VFE_STATE after stalling PIPE_CONTROL
    
    Fixes: bc612536 ("anv: Emit a dummy MEDIA_VFE_STATE before switching from 
GPGPU to 3D")
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6172
    Signed-off-by: Sviatoslav Peleshko <[email protected]>
    Reviewed-by: Lionel Landwerlin <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21472>
    (cherry picked from commit 07b57deea296375b597fcdf1fc8210fb2b6f69f9)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=c2cc0c0f63c58593fc75a6c617ff512df2a66ad7
Author: Friedrich Vock <[email protected]>
Date:   Sun Nov 6 17:36:39 2022 +0100

    mesa: Report GL_SHADER_BINARY_FORMAT_SPIR_V as supported
    
    GL_ARB_gl_spirv introduced it, but its corresponding format was never 
listed in GL_SHADER_BINARY_FORMATS.
    
    Fixes: 5bc03d25 ("mesa: implement SPIR-V loading in glShaderBinary")
    Closes: #7644
    Reviewed-by: Marek Olšák <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19559>
    (cherry picked from commit c0c911d9ba3b8c2f3d9a4ad2646b392a7bdb3f9a)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=3bc45e037f2eb40a90bb4ac4fa4196d060fa3dd4
Author: Sviatoslav Peleshko <[email protected]>
Date:   Wed Feb 15 17:15:42 2023 +0200

    anv: Handle all fields in VkAccelerationStructureBuildRangeInfoKHR
    
    Add handling of primitiveOffset and firstVertex.
    
    Fixes: f3ddfd81 ("anv: Build BVHs on the GPU with GRL")
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8296
    Signed-off-by: Sviatoslav Peleshko <[email protected]>
    Reviewed-by: Lionel Landwerlin <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21342>
    (cherry picked from commit 4bf38f5652b1910f388482473d808a6f8fe5a2d8)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=6a63ffb5ce7b0d71cfebe8f5171857e198161e20
Author: Caio Oliveira <[email protected]>
Date:   Wed Feb 22 15:47:54 2023 -0800

    iris, crocus: Align workaround address to 32B
    
    The workaround address is used as a source for push constants when
    there's no resource available, that address must be 32B aligned.
    
    This fixes invalid address being used for buffers in
    3DSTATE_CONSTANT_* packets.
    
    Now that intel_debug_write_identifiers() already add the padding,
    there's no need to include extra "+ 8" to the offset.
    
    Thanks to Xiaoming Wang that contributed to find and fix this issue.
    
    Fixes: 2a4c361b069 ("iris: add identifier BO")
    Reviewed-by: Kenneth Graunke <[email protected]>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21479>
    (cherry picked from commit a4a0417263aa98ee93fe3f635fcdc54daa091013)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=7fd9375487cd260395569959f024453dfc841787
Author: Sil Vilerino <[email protected]>
Date:   Wed Feb 22 23:32:28 2023 -0500

    d3d12: Fix VP9 Decode - Checking 0xFF instead of 0x7F for invalid 
frame_ref[i].Index7Bits
    
    Fixes: c8e8ce8359ceb9161ac05cf48b15e2e6a298ebd6 ("d3d12: Add VP9 Decode 
support")
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21507>
    (cherry picked from commit 94906337232779b613d0b510e3c8d5abf6f36784)

URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=dc440fb8adbfd4365ca92b507d7ea9ddb9d5fb69
Author: Dylan Baker <[email protected]>
Date:   Mon Feb 27 13:49:49 2023 -0800

    .pick_status.json: Update to e45bbcf6492a178e52e4b87bad31bb01bc22e507

Reply via email to