Mesa (20.0): 26 new commits

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Feb 13 18:19:46 UTC 2020


URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6bbbef96991fcd012305674587f7534b1fc1137a
Author: Dylan Baker <dylan at pnwbakers.com>
Date:   Thu Feb 13 10:18:44 2020 -0800

    VERSION: bump for 20.0.0-rc3

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fa0dcef2ef2fa41350b867793bb658a48a04e676
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Tue Feb 4 17:25:35 2020 +0100

    nir: do not use De Morgan's Law rules for flt and fge
    
    In presence of NaNs, "!(flt(a, b) && flt(c, d))" is NOT EQUAL
    to "fge(a, b) || fge(c, d)". These optimizations are unsafe for
    apps that rely on NaN behaviour.
    
    pipeline-db (GFX9/LLVM):
    Totals from affected shaders:
    SGPRS: 3176 -> 3136 (-1.26 %)
    VGPRS: 2188 -> 2144 (-2.01 %)
    Spilled SGPRs: 227 -> 169 (-25.55 %)
    Code Size: 150572 -> 151800 (0.82 %) bytes
    Max Waves: 307 -> 310 (0.98 %)
    
    pipeline-db (GFX9/ACO):
    Totals from affected shaders:
    SGPRS: 18744 -> 18744 (0.00 %)
    VGPRS: 15576 -> 15580 (0.03 %)
    Spilled SGPRs: 164 -> 164 (0.00 %)
    Code Size: 1573012 -> 1576492 (0.22 %) bytes
    Max Waves: 1534 -> 1532 (-0.13 %)
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2127
    Fixes: d1ed4ffe0b7 ("nir: Use De Morgan's Law on logic compounded comparisons")
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3696>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3696>
    (cherry picked from commit 8e7728077435c5c5ad8c328761277f8ff3b32112)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4558bdb95aa11863780d3a4eed593e6f624222d8
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Mon Feb 10 12:13:15 2020 +0100

    aco: fix creating v_madak if v_mad_f32 has two sgpr literals
    
    Do not ignore that src1 can be a sgpr.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2435
    Cc: <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Rhys Perry <pendingchaos02 at gmail.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3759>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3759>
    (cherry picked from commit ddd767387f336ed1578f171a2af4ca33c564d7f3)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=75ea9c808d27023c3d726bd2060c50594b0b30a5
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Fri Feb 7 13:25:12 2020 -0800

    panfrost: Remove unused anonymous enum variables.
    
    This patch fix these build errors with GCC 10.
    
    /usr/bin/ld: src/gallium/drivers/panfrost/libpanfrost.a(pan_resource.c.o):src/panfrost/midgard/midgard_compile.h:52: multiple definition of `pan_sysval'; src/gallium/drivers/panfrost/libpanfrost.a(pan_screen.c.o):src/panfrost/midgard/midgard_compile.h:52: first defined here
    /usr/bin/ld: src/gallium/drivers/panfrost/libpanfrost.a(pan_resource.c.o):src/panfrost/midgard/midgard_compile.h:68: multiple definition of `pan_special_attributes'; src/gallium/drivers/panfrost/libpanfrost.a(pan_screen.c.o):src/panfrost/midgard/midgard_compile.h:68: first defined here
    
    Fixes: 7e8de5a707f7 ("panfrost: Implement system values")
    Fixes: 306800d747bc ("pan/midgard: Lower gl_VertexID/gl_InstanceID to attributes")
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3752>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3752>
    (cherry picked from commit 63345a359656246df83b416743031c1836457d23)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e5f13bca20dcec0efcb0dda864f820523056ed60
Author: Eric Anholt <eric at anholt.net>
Date:   Wed Feb 5 10:38:57 2020 -0800

    Revert "gallium: Fix big-endian addressing of non-bitmask array formats."
    
    This reverts the functional part of commit
    d17ff2f7f1864c81c1e00d04baf20f953c6d276a, leaving the unit test for
    mesa/pipe agreement on what's an array.
    
    The issue is that the util_channel_desc.shift values on array formats are
    not used for bit addressing in memory, they're bit addressing within a
    word treating a pixel of the format as a native type, as seen by
    llvmpipe's use of the values to do shifts (see
    lp_build_unpack_arith_rgba_aos() for example).  This means the values are
    nonsensical for 3-byte RGB, but then llvmpipe doesn't expose those formats
    so it works out.
    
    I still want to clean up our big-endian format handling at some point, but
    let's fix the s390x regression first, sort out our format unit tests in
    CI, then be able to refactor with confidence.
    
    Fixes: d17ff2f7f186 ("gallium: Fix big-endian addressing of non-bitmask array formats.")
    Closes: #2472
    Acked-by: Marek Olšák <marek.olsak at amd.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3721>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3721>
    (cherry picked from commit 1886dbfe7362baa221009371434f158b97183164)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f93c8d8598f8a9a8908b6b2829e540b1eb6970b9
Author: Marek Olšák <marek.olsak at amd.com>
Date:   Thu Jan 30 16:58:15 2020 -0500

    radeonsi: fix the DCC MSAA bug workaround
    
    Cc: 19.3 20.0 <mesa-stable at lists.freedesktop.org>
    Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3646>
    (cherry picked from commit fbb27eebc8cab1a5d70ea67a37de8d18f20a88f0)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c4e1dd07eb5266e3da37dc35c701bea6b5d71c23
Author: Neha Bhende <bhenden at vmware.com>
Date:   Tue Dec 10 13:22:29 2019 +0530

    svga: Use pipe_shader_state_from_tgsi to set shader state
    
    Use pipe_shader_state_from_tgsi() to set shader state for transformed
    shader so that we get all correct data for respective shader state.
    
    This fixes several regressed glretrace, piglit crashes found during merging
    upsteam mesa
    
    Fixes: bf12bc2dd7a2 (draw: add nir info gathering and building support)
    
    Reviewed-by: Charmaine Lee <charmainel at vmware.com>
    (cherry picked from commit 144561dc5ec3dcbe63cb054f806247bc120b64e4)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f86e27156d7ee65f72be2289e012401a8aad53a1
Author: Neha Bhende <bhenden at vmware.com>
Date:   Mon Feb 10 10:39:51 2020 -0800

    svga: fix size of format_conversion_table[]
    
    Since we are now using sparse matrix for format_conversion_table,
    we have to make sure we have last entry in table which gives the
    sense of required size of format_conversion_table
    
    Fixes: 84db6ba7 ("svga: Drop unsupported formats from the format table")
    
    Reviewed-by: Charmaine Lee <charmainel at vmware.com>
    (cherry picked from commit 470e73e7f86b4530cf789a779f43674ecec91881)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9724b0f32c02a45988567051188fd0ee8d3d84e0
Author: Dylan Baker <dylan at pnwbakers.com>
Date:   Tue Feb 11 09:49:08 2020 -0800

    .pick_status.json: Update to 23037627359e739c42b194dec54875aefbb9d00b

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a3bd400c1417c7a3fff8bad55297eaae5924568c
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Fri Feb 7 16:33:35 2020 +0100

    aco: fix waiting for scalar stores before "writing back" data on GFX8-GFX9
    
    Seems required also on GFX8-GFX9 to achieve correct behaviour. This
    is an undocumented behaviour but it makes real sense to me.
    
    pipeline-db on GFX9:
    Totals from affected shaders:
    SGPRS: 1018 -> 1018 (0.00 %)
    VGPRS: 516 -> 516 (0.00 %)
    Code Size: 40516 -> 40636 (0.30 %) bytes
    Max Waves: 280 -> 280 (0.00 %)
    
    This fixes some sort of sun flickering with Assassins Creed Origins.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2488
    Cc: <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Daniel Schürmann <daniel at schuermann.dev>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3750>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3750>
    (cherry picked from commit 34fd894e42ae1ec9d35bf9c4f05364b03dd4a223)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=32dc7fff47f2c0c88165b4cb24d9418eeafd7cea
Author: Georg Lehmann <dadschoorse at gmail.com>
Date:   Thu Feb 6 22:38:35 2020 +0100

    Vulkan overlay: use the corresponding image index for each swapchain
    
    pImageIndices should be a pointer to the current image index
    otherwise every swapchain but the first one could have a wrong image index
    
    Cc: <mesa-stable at lists.freedesktop.org>
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3741>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3741>
    (cherry picked from commit 7283c33b981f975361e3bfa62a339c88f2642cbb)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=027f9c887c3ce4e0aa77051dc1c488b375696d2a
Author: Marek Olšák <marek.olsak at amd.com>
Date:   Wed Jan 29 17:25:45 2020 -0500

    radeonsi: don't report that multi-plane formats are supported
    
    Fixes: a554b45d - st/mesa: don't lower YUV when driver supports it natively
    Closes: #2376
    
    Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer at amd.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3632>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3632>
    (cherry picked from commit 35961b10da2dee4d3820ab1f250007412b06d876)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f3f475185127204edb4ea91a460c0a22ee718c5d
Author: Hyunjun Ko <zzoon at igalia.com>
Date:   Thu Nov 7 05:28:41 2019 +0000

    freedreno/ir3: put the conversion back for half const to the right place.
    
    The previous commit leads to match immed values unexpectedly.
    
    This makes constlen for each shader including bvert wrong.
    Also fixes atan2 for mediump deqp tests.
    
    Fixes: cbd1f47433b ("freedreno/ir3: convert back to 32-bit values for half constant registers.")
    
    v2: Move conversion up above fabs/fneg modifier handling as well.
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3737>
    (cherry picked from commit 260bd32b58a55ac0d9870497caef3a4602e19d47)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a25c7674aae39d3c119077f9643b23d69aa9fe79
Author: Dylan Baker <dylan at pnwbakers.com>
Date:   Mon Feb 10 09:05:25 2020 -0800

    .pick_status.json: Update to 689817c9dfde9a0852f2b2489cb0fa93ffbcb215

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1d17f4273218c58def61f549ff2905a980d866a4
Author: Georg Lehmann <dadschoorse at gmail.com>
Date:   Thu Feb 6 22:29:42 2020 +0100

    Vulkan Overlay: Don't try to change the image layout to present twice
    
    The render pass already does the transition.
    The pipeline barrier is still needed to transfer the queue family ownership.
    
    Fixes: 320b0f66c274 ("vulkan/overlay: bounce image back to present layout")
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3740>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3740>
    (cherry picked from commit f239bb8020df4176ca539bafff327ab5c8da2c2e)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e393404ff1d3acb3766af8844b7711ad601b3705
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Fri Feb 7 12:53:31 2020 +0100

    aco: do not use ds_{read,write}2 on GFX6
    
    According to LLVM, these instructions have a bounds checking bug.
    LLVM only uses them on GFX7+.
    
    This fixes broken geometry in Assassins Creed Origins.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2489
    Fixes: 4a553212fa1 ("radv: enable ACO support for GFX6")
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Daniel Schürmann <daniel at schuermann.dev>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3746>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3746>
    (cherry picked from commit 4b978cd950cef844afce07993ddb697779e5648d)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1f8db816321d6b83db7e2cc038be03a092640c34
Author: Tapani Pälli <tapani.palli at intel.com>
Date:   Tue Feb 4 14:58:17 2020 +0200

    intel/vec4: fix valgrind errors with vf_values array
    
    Fixes valgrind errors introduced since commit a8ec4082.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2346
    Fixes: a8ec4082 ("nir+vtn: vec8+vec16 support")
    Signed-off-by: Tapani Pälli <tapani.palli at intel.com>
    Reviewed-by: Matt Turner <mattst88 at gmail.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3691>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3691>
    (cherry picked from commit da76dfb5159c2ca8ee24d64a5f85a68f28b70c65)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8f29aaa2cf78f8a4c02d41d36e0b66903e6b9277
Author: Rhys Perry <pendingchaos02 at gmail.com>
Date:   Mon Feb 3 17:54:07 2020 +0000

    aco: fix gfx10_wave64_bpermute
    
    Since 9254fb4fc72, the pass replaced the SCC clobber with the scalar
    identity temporary. Just skip most of the temporary setup, since we don't
    need it for gfx10_wave64_bpermute.
    
    Although shuffles are disabled on GFX10, Detroit: Become Human seems to
    use them anyway.
    
    Signed-off-by: Rhys Perry <pendingchaos02 at gmail.com>
    Reviewed-By: Timur Kristóf <timur.kristof at gmail.com>
    Fixes: 9254fb4fc72ed289ffded28ef067b4582973e90c ('aco: don't use a scalar
           temporary for reductions on GFX10')
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3683>
    (cherry picked from commit 20eb1acb6f404ffa4e502e7de8dec8ac83e7a8a8)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1e0cc313ba0bd27ed878e80987f865e37f9c3360
Author: Georg Lehmann <dadschoorse at gmail.com>
Date:   Wed Feb 5 18:06:55 2020 +0000

    Correctly wait in the fragment stage until all semaphores are signaled
    
    This fixes two issues:
    - a crash if the application uses more than one semaphore for presenting because the driver expects one stage per semaphore
    - the swapchain image could be not ready yet if the semaphores aren't signaled, #946 is possible related
    
    Cc: <mesa-stable at lists.freedesktop.org>
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3718>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3718>
    (cherry picked from commit 1c79afd94620925cb9e0903f24f91c3ab9ecfcb4)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d96f0faacf8aa9ae08d05bbcaaed53504ae61d4c
Author: Thomas Hellstrom <thellstrom at vmware.com>
Date:   Wed Feb 5 07:54:19 2020 +0100

    svga: Fix banded DMA upload
    
    A previous commit ("winsys/svga: Limit the maximum DMA hardware buffer
    size") made banded DMA transfer kick in when transfering gnome-shell
    window contents under gnome-shell / wayland. This uncovered a bug where
    we assumed that banded DMA transfers always occur to the top (y=0) of the
    surface.
    Fix this by taking the destination y offset into account.
    
    Cc: 19.2 19.3 20.0 <mesa-stable at lists.freedesktop.org>
    Fixes: 287c94ea498 ("Squashed commit of the following:")
    Signed-off-by: Thomas Hellstrom <thellstrom at vmware.com>
    Reviewed-by: Brian Paul <brianp at vmware.com>
    Reviewed-by: Charmaine Lee <charmainel at vmware.com>
    Reviewed-by: Roland Scheidegger <sroland at vmware.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3733>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3733>
    (cherry picked from commit 451cf228d53ba8f51beb3dcf04370e126fb7ccb6)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=203710e94c2a23c2d463a5d294f068e006e9035d
Author: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Date:   Thu Feb 6 10:13:36 2020 +0200

    anv: set MOCS on push constants
    
    v2: Also set MOCS on 3DSTATE_CONSTANT_ALL (Ken)
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Fixes: 67d2cb3e9367 ("anv: Add get_push_range_address() helper.")
    Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3732>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3732>
    (cherry picked from commit f9febfae416e9fdf39a501ceb53a65c99ca78eed)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d189ab9fccd7a08c558df45d22d21a4413441d11
Author: Rafael Antognolli <rafael.antognolli at intel.com>
Date:   Mon Aug 19 12:28:55 2019 -0700

    intel: Load the driver even if I915_PARAM_REVISION is not found.
    
    This param is only available starting on kernel 4.1. Use a default
    value of 0 if it is not found instead.
    
    v2: Update commit message (Lionel)
    
    Cc: Jordan Justen <jordan.l.justen at intel.com>
    Cc: Mark Janes <mark.a.janes at intel.com>
    Fixes: 96e1c945f2b ("i965: Move device info initialization to common
    Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Reviewed-by: Kristian H. Kristensen <hoegsberg at google.com>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3727>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3727>
    (cherry picked from commit 4aa7af9e9a4c19e10afaf4a3c756e62cf4d352c3)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bd934ff613c006344e757dfdac9f136ead1b183a
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Sat Feb 1 01:12:32 2020 -0800

    swr: Fix GCC 4.9 checks.
    
    Fixes: f0a22956be48 ("swr/rast: _mm*_undefined_* implementations for gcc<4.9")
    Fixes: e21fc2c62527 ("swr/rast: non-regex knob fallback code for gcc < 4.9")
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Jan Zielinski <jan.zielinski at intel.com>
    (cherry picked from commit deb2bbf57ec1d0660dd85b7080bf5ebeb10e8768)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=51f7d81dd25d7a77f481507d6dd0f0c08ba09de5
Author: James Xiong <james.xiong at intel.com>
Date:   Wed Jan 22 15:52:25 2020 -0800

    gallium: let the pipe drivers decide the supported modifiers
    
    fixes: ac0219cc5b ("gallium: dmabuf support for yuv formats that are not natively supported")
    
    Signed-off-by: James Xiong <james.xiong at intel.com>
    Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3527>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3527>
    (cherry picked from commit 205ce0bea5e14a855a86f8b9662ba34cdd372280)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=06a9d51f2707abba02975dc2e8ef72a3f9d1dfe0
Author: Timur Kristóf <timur.kristof at gmail.com>
Date:   Wed Feb 5 11:19:06 2020 +0100

    aco/optimizer: Don't combine uniform bool s_and to s_andn2.
    
    Fixes: 8a32f57fff56b3b94f1b5589feba38016f39427c
    
    Signed-off-by: Timur Kristóf <timur.kristof at gmail.com>
    Reviewed-by: Daniel Schürmann <daniel at schuermann.dev>
    Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3714>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3714>
    (cherry picked from commit 4d34abd15c91ed67414e2e0dc1ae252f53574ef6)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=419c992e6537dc8082f0cbea823a560ea87a9c78
Author: Dylan Baker <dylan at pnwbakers.com>
Date:   Fri Feb 7 09:21:42 2020 -0800

    .pick_status.json: Update to d8bae10bfe0f487dcaec721743cd51441bcc12f5



More information about the mesa-commit mailing list