Mesa (20.1): 27 new commits

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed May 13 17:48:19 UTC 2020


URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c49fbacd9444da2dbd4bbe7d574808f8f7c29af6
Author: Eric Engestrom <eric at engestrom.ch>
Date:   Wed May 13 19:14:21 2020 +0200

    VERSION: bump to 20.1.0-rc3
    
    Signed-off-by: Eric Engestrom <eric at engestrom.ch>

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ed872abd563f0f3bd9f784868097cd834dcf55c5
Author: Andres Gomez <agomez at igalia.com>
Date:   Fri May 1 00:05:07 2020 +0300

    gitlab-ci: correct tracie behavior with replay errors
    
    [dump_trace_images] Info: Dumping trace /tmp/tracie.test.ap5pshYcsg/traces-db/trace1/magenta.testtrace... ERROR
    [dump_trace_images] Debug: === Failure log start ===
    invalid literal for int() with base 16: 'in'
    [dump_trace_images] Debug: === Failure log end ===
    [check_image] Trace /tmp/tracie.test.ap5pshYcsg/traces-db/trace1/magenta.testtrace couldn't be replayed. See above logs for more information.
    Traceback (most recent call last):
      File "/tmp/tracie.test.ap5pshYcsg/tracie.py", line 176, in <module>
        main()
      File "/tmp/tracie.test.ap5pshYcsg/tracie.py", line 164, in main
        ok, result = gitlab_check_trace(project_url, commit_id, args.device_name, trace, expectation)
    TypeError: cannot unpack non-iterable bool object
    
    Fixes: efbbf8bb81e ("tracie: Print results in a machine readable format")
    Signed-off-by: Andres Gomez <agomez at igalia.com>
    Reviewed-by: Rohan Garg <rohan.garg at collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4839>
    (cherry picked from commit a6beb051aff4f11784cb974a1dc3647e74f2389c)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d1e3c0b430cd97d8098123da61e58bdf871365ef
Author: Andres Gomez <agomez at igalia.com>
Date:   Thu Apr 30 22:49:58 2020 +0300

    gitlab-ci: create always the "results" directory with tracie
    
    Otherwise, we will fail when the traces description file doesn't
    contain any checksum for the specified device.
    
    Fixes: efbbf8bb81e ("tracie: Print results in a machine readable format")
    Signed-off-by: Andres Gomez <agomez at igalia.com>
    Reviewed-by: Rohan Garg <rohan.garg at collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4839>
    (cherry picked from commit 8546d1dd789b58bd0aff5ca0a231efb35c09c1ac)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=97e2965b07c64bca841e82e153ef2b8320ea27b0
Author: Marek Vasut <marex at denx.de>
Date:   Sat May 2 22:24:25 2020 +0200

    etnaviv: Disable seamless cube map on GC880
    
    The GC880 on iMX6DL indicates in it's minorFeatures2 register that it
    does support SEAMLESS_CUBE_MAP, however when the TE.SAMPLER_CONFIG1
    VIVS_TE_SAMPLER_CONFIG1_SEAMLESS_CUBE_MAP bit is set on GC880 on iMX6DL,
    the result is corrupted image. In particular, the following ~112 dEQPs
    are affected and fail:
    
      dEQP-GLES2.functional.texture.filtering.cube.*
    
    This only happens on MX6DL GC880, MX6Q GC2000 and STM32MP1 GC400(GCnano)
    do not report the minorFeatures2 SEAMLESS_CUBE_MAP bit and ignore the
    TE_SAMPLER_CONFIG1 VIVS_TE_SAMPLER_CONFIG1_SEAMLESS_CUBE_MAP bit (note
    that ss->seamless_cube_map is unconditionally set by mesa at times even
    PIPE_CAP_SEAMLESS_CUBE_MAP_PER_TEXTURE returns 0), so there is no visible
    problem and there are no failing dEQP tests on the GC2000 and GCnano.
    
    This might imply that the minorFeatures2 SEAMLESS_CUBE_MAP has some
    different meaning on GC880 or the SEAMLESS_CUBE_MAP behaves differently
    on the GC880.
    
    This patch does not set the SEAMLESS_CUBE_MAP bit on hardware which does
    not indicate support for seamless cube map and on GC880, which results
    in reduction in failed dEQPs: 635 to 186 on GC880, 274 to 270 on GC2000
    and no change on GC400(GCnano).
    
    Fixes: 8dd26fa2f06 ("etnaviv: support GL_ARB_seamless_cubemap_per_texture")
    Reviewed-by: Christian Gmeiner <christian.gmeiner at gmail.com>
    Signed-off-by: Marek Vasut <marex at denx.de>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4865>
    (cherry picked from commit 2b535ac61b92cdf5f1e5adca3f2a4a43e7384e1a)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8b409a429fdc40351c8470aff28587e62ac7bf41
Author: Rob Clark <robdclark at chromium.org>
Date:   Thu May 7 13:24:46 2020 -0700

    freedreno/ir3: fix indirect cb0 load_ubo lowering
    
    We can no longer assume that `state->ranges[0]` is block 0.  It *often*
    is, but when we encounter a "real" ubo that we lower to `load_uniform`
    before a block 0 `load_ubo`, it could end up another entry in the table.
    Resulting in the second pass after gathering ubo ranges, not finding a
    valid range.  Which results in a `load_ubo` for a thing that is not
    actually a ubo making it's way into ir3 frontend.  Resulting in grabbing
    what we think is a ubo address out of some unrelated const register, and
    trying to dereference that.  Which as you can imagine, fails in amusing
    ways.
    
    Fixes: fc850080ee3 ("ir3: Rewrite UBO push analysis to support bindless")
    Signed-off-by: Rob Clark <robdclark at chromium.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4954>
    (cherry picked from commit d69f6fd8529b1dcefa443a8cb31bd362bb64a28c)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fef7d3c73e15c532fadd249e63d920cd2b709a05
Author: Arcady Goldmints-Orlov <agoldmints at igalia.com>
Date:   Mon May 11 18:31:49 2020 -0500

    intel/compiler: fix alignment assert in nir_emit_intrinsic
    
    Fixes: c643979228 (intel/fs: Choose memory message type based on bit size)
    Fixes: dEQP-VK.subgroups.ballot_broadcast.compute.subgroupbroadcast_i8vec2
    
    Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5000>
    (cherry picked from commit 95fd950d35717dda29cb7876ac2f2b7852eff1c4)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=67c3c06541f27a3f200fa64ecfbac2a6b9f5196a
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Mon May 11 10:52:18 2020 +0200

    radv: limit the Vulkan version to 1.1 for Android
    
    Vulkan 1.2 seems rejected. This hardcodes the Android version to
    1.1.107.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2936
    Fixes: 7f5462e349a ("radv: enable Vulkan 1.2")
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Acked-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4985>
    (cherry picked from commit 69430921fc123b9016d5bf1779c0ab0ed4d95931)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=464bbd6aaafb0a6a809d00ea60818119a16e5144
Author: Gert Wollny <gert.wollny at collabora.com>
Date:   Mon May 11 09:03:41 2020 +0200

    r600: Fix nir compiler options, i.e. don't lower IO to temps for TESS
    
    Also fix alignments and add umad24 and umul24 options.
    
    Fixes: 6747a984f59ea9a2dd74b98d59cb8fdb028969ae
        r600: Enable tesselation for NIR
    
    Signed-off-by: Gert Wollny <gert.wollny at collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4982>
    (cherry picked from commit 50eabb7035fe361d870f504b73c15962ddf0b67e)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5c0738f96795eac731549c4f3b694b0cafe87af1
Author: Axel Davy <davyaxel0 at gmail.com>
Date:   Sun May 10 20:12:56 2020 +0200

    gallium/util: Fix leak in the live shader cache
    
    When the nir backend is used, the create_shader
    call is supposed to release state->ir.nir.
    When the cache hits, create_shader is not called,
    thus state->ir.nir should be freed.
    
    There is nothing to be done for the TGSI case as the
    tokens release is done by the caller.
    
    This fixes a leak noticed in:
    https://gitlab.freedesktop.org/mesa/mesa/-/issues/2931
    
    Fixes: 4bb919b0b8b4ed6f6a7049c3f8d294b74b50e198
    
    Signed-off-by: Axel Davy <davyaxel0 at gmail.com>
    Reviewed-by: Marek Olšák <marek.olsak at amd.com>
    Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer at amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4980>
    (cherry picked from commit 47bfc799da61aadd60ef9cc5c4bf0651c519cc77)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=750a0125dffc7c43fa6927e2025bc19ed3d3244f
Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Thu Apr 2 12:14:12 2020 -0700

    nir/algebraic: Optimize ushr of pack_half, not ishr
    
    When a = -1.0, pack_half_2x16(vec2(0x0000, 0xBC00)) will produce
    0xBC000000.  The ishr will produce 0xFFFFBC00.  The replacement
    pack_half_2x16(vec2(0xBC00, 0x0000)) will produce 0x0000BC00.
    
    Fixes: 1f72857739b ("nir/algebraic: add some half packing optimizations")
    Reviewed-by: Rhys Perry <pendingchaos02 at gmail.com>
    Reviewed-by: Matt Turner <mattst88 at gmail.com>
    Cc: Connor Abbott <cwabbott0 at gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4515>
    (cherry picked from commit a2bf41ec6527fbedc2a75a8072d7222298bca347)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fa01a9397fb6b6eee4d83dcf3252238c48d5dbe3
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Wed May 6 15:34:07 2020 +0200

    aco: fix 64-bit trunc with negative exponents on GFX6
    
    v_frexp_exp returns the exponent as an unsigned value.
    
    Also, v_ashr returns either 0 or -1 depending on the sign of the
    source operand, but what we want is only the sign bit.
    
    Fixes a bunch of recent dEQP-VK.glsl.builtin.precision_double.* tests.
    
    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>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4921>
    (cherry picked from commit 3fba0a7a6f01496344ddb93e774b2d4bc9195e8a)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c4b59dbe8182673afaa58ea51fd50b9f0f38947a
Author: Eric Engestrom <eric at engestrom.ch>
Date:   Wed May 13 14:44:38 2020 +0200

    .pick_status.json: Update to c1c0cf7a66905e8d7ad506842a41b0ad0c5b10da

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2ab0496842946bba21c9d579dd92063f0570955f
Author: Jordan Justen <jordan.l.justen at intel.com>
Date:   Sun May 10 16:33:45 2020 -0700

    docs/relnotes/new_features.txt: Add RKL to 20.1 release notes
    
    Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c75ab0a241fc2b6dcd8c648bb7d18320312acaff
Author: Jordan Justen <jordan.l.justen at intel.com>
Date:   Tue Jan 14 14:36:25 2020 -0800

    intel/dev: Add device info for RKL
    
    Cc: 20.1 <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
    Reviewed-by : Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4955>
    (cherry picked from commit 45c33313e6ee5ec85e585b512270c3f668eb149e)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7d5074f4a63b6eced3cf3f2a2a8177b78ba20381
Author: Jordan Justen <jordan.l.justen at intel.com>
Date:   Mon May 4 13:29:32 2020 -0700

    intel/dev: Split .num_subslices out of GEN12_FEATURES macro
    
    The .num_subslices field makes it problematic to reuse the
    GEN12_FEATURES macro in other macros.
    
    This also fixes the number of L3 banks for tgl gt1, except that this
    was already fixed by Jason (dynamically) in:
    
    86f67952d31 ("intel/devinfo: Compute the correct L3$ size for Gen12")
    
    Cc: 20.1 <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
    Reviewed-by : Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4955>
    (cherry picked from commit 54996ad49273641e20dbb2d7aff382199e27cd10)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=096e06c56aaed4fb43ba5c35694e815d5740e29d
Author: Qiang Yu <yuq825 at gmail.com>
Date:   Fri Apr 24 16:20:25 2020 +0800

    panfrost: don't always build bifrost_compiler
    
    src/panfrost/shared is shared with lima driver, build
    bifrost_compiler for lima driver is meaningless and
    get link error when only lima driver is enabled.
    
    So only build bifrost_compiler when configued with:
      meson -Dtools=panfrost
    
    Fixes: ec2a59cd7aa4 "panfrost: Move non-Gallium files outside of Gallium"
    Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
    Signed-off-by: Qiang Yu <yuq825 at gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4960>
    (cherry picked from commit 07b0fbea92a66499ef7c0f9b748b1034831201b1)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1e3e805b0c10a238c908ba6fcef87ae35ce9605c
Author: Eric Engestrom <eric at engestrom.ch>
Date:   Sun May 10 23:20:02 2020 +0200

    .pick_status.json: Update to 56f955e4850035d915a2a87e2ebea7fa66ab5e19

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c22388ed7ea29d5d9b386e21373f859de05457be
Author: Arcady Goldmints-Orlov <agoldmints at igalia.com>
Date:   Tue Apr 28 19:46:48 2020 -0500

    anv: increase minUniformBufferOffsetAlignment to 64
    
    Acked-by: Jason Ekstrand <jason at jlekstrand.net>
    Acked-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4904>
    (cherry picked from commit a0de2e0090535bd49b70c52917e7bdab628d354a)
    
    squashed with its fix:
    
    anv: fix alignments for uniform buffers
    
    We were not consistent with minimums reported in the physical device
    properties.
    
    Fixes a few CTS tests :
       dEQP-VK.memory.requirements.dedicated_allocation.buffer.regular
       dEQP-VK.memory.requirements.extended.buffer.regular
       dEQP-VK.memory.requirements.core.buffer.regular
    
    v2: Use define for the limit
    
    v3: Rename define
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Fixes: a0de2e0090535b ("anv: increase minUniformBufferOffsetAlignment to 64")
    Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4940>
    (cherry picked from commit 8bcfce2fcd02e9b04b7edda5c0d8a0e4b77be39c)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=be882b566b1698b84622bef7da51d1954d852462
Author: Blaž Tomažič <blaz.tomazic at gmail.com>
Date:   Wed May 6 21:34:10 2020 +0200

    radeonsi: Fix omitted flush when moving suballocated texture
    
    Fixes: 5e805cc74bc52f97de8f6308fc06bc96623e7e09 "radeonsi: flush the context after resource_copy_region for buffer exports"
    
    Reviewed-by: Marek Olšák <marek.olsak at amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4925>
    (cherry picked from commit 808eb20186a23be1a1917668e374243151e6699e)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=38f1cf4335dd23fc14a77eca73b2515c9b9ac39d
Author: pal1000 <liviuprodea at yahoo.com>
Date:   Fri Apr 24 17:06:01 2020 +0300

    util: Make process_test path compatible with mingw native toolchains
    
    v2: Make sure we require winepath when using mingw crosscompilers
    
    v3: Also take into account mingw clang toolchains
    
    Acked-by: Roland Scheidegger <sroland at vmware.com>
    Reviewed-by: Daniel Stone <daniels at collabora.com>
    
    Fixes: f8f14130 ("util/u_process: add util_get_process_exec_path")
    Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2788
    CC: "20.1" <mesa-stable at lists.freedesktop.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4731>
    (cherry picked from commit 772b15ad3227e08bb4e18932ac9ecf4c29271160)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=dd42e8258687708093795af5c9d9fe786ef1c07c
Author: Daniel Schürmann <daniel at schuermann.dev>
Date:   Wed May 6 17:24:38 2020 +0100

    aco: either copy-propagate or inline create_vector operands
    
    Don't do both at the same time as it breaks DCE
    
    Fixes: 2dc550202e82c5da198ad0a416a5d24dd89addd8 ('aco: copy-propagate p_create_vector copies of vectors')
    Fixes: dEQP-VK.glsl.builtin.precision_double.ldexp.compute.scalar on GFX6-GFX7
    
    Reviewed-by: Rhys Perry <pendingchaos02 at gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4922>
    (cherry picked from commit 37e89e30276724932328edb7b8bf4909606052d1)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a603ee96b335e2b6f2eb4e597e9b9173eb7be589
Author: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Date:   Thu May 7 11:36:36 2020 +0300

    anv: don't expose VK_INTEL_performance_query without kernel support
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Fixes: 2b5f30b1d91b ("anv: implement VK_INTEL_performance_query")
    Acked-by: Timothy Strelchun <timothy.strelchun at intel.com>
    Reviewed-by: Rafael Antognolli <rafael.antognolli at intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4937>
    (cherry picked from commit 4f17e9eef6f9f8a2986264b3da5157542983a1da)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4628e95920e9d3b6e694a66262b718be0bbc068a
Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Wed May 6 15:33:37 2020 +0200

    util/os_memory: never use os_memory_debug.h
    
    This is currently broken hard, because this code is being used in more
    places that it used to be, and fixing that is prohibitively hard right
    now.
    
    This is far from ideal, as it leaves the same inconsistency in the
    EMBEDDED_DEVICE code-path. But that only used by VMWare, so it's
    probably better if they fix it, as they know their requirements better
    than we do.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2911
    Fixes: 76f79db3f5d ("util: stop including files from mesa/main")
    Acked-by: Jose Fonseca <jfonseca at vmware.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4919>
    (cherry picked from commit 7ba2333cc17e7f0a1520866bcfd60a991d34295e)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=77e06f9d4bc9f03605a012074c8a242643ef7b01
Author: Jose Maria Casanova Crespo <jmcasanova at igalia.com>
Date:   Thu May 7 03:50:16 2020 +0200

    v3d: Include supported DXT formats to enable s3tc/dxt extensions
    
    DXT1_RGBA and sRGB variants of DXT[135] formats are enabled as
    valid format on V3D.
    
    Once all S3TC formats supported by V3C are enabled the following
    extensions become exposed by gallium.
    
        * GL_ANGLE_texture_compression_dxt3
        * GL_ANGLE_texture_compression_dxt5,
        * GL_EXT_texture_compression_dxt1
        * GL_EXT_texture_compression_s3tc
        * GL_S3_s3tc
        * GL_EXT_texture_compression_s3tc_srgb
    
    This enables 206 passing piglit test related to gl_compressed.*s3tc_dxt
    
    Cc: 20.0 20.1 <mesa-stable at lists.freedesktop.org>
    Reviewed-by: Iago Toral Quiroga <itoral at igalia.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4934>
    (cherry picked from commit 905edc376dd1ace6ac2af0fc351606210a0141a1)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f060438be024807b80e30b80d2bf9e791bc85ee0
Author: Jose Maria Casanova Crespo <jmcasanova at igalia.com>
Date:   Thu May 7 03:37:22 2020 +0200

    v3d: Fix swizzle in DXT3 and DXT5 formats
    
    Swizzles were ignoring the W component of the format DXT3_RGBA and
    DXT5_RGBA.
    
    This fixes 15 piglit tests:
    
    spec/!opengl 1.1/copyteximage 2d
    spec/!opengl 1.2/copyteximage 3d
    spec/arb_texture_compression/fbo-generatemipmap-formats/gl_compressed_rgba
    spec/arb_texture_compression/fbo-generatemipmap-formats/gl_compressed_rgba npot
    spec/arb_texture_compression/texwrap formats bordercolor-swizzled/gl_compressed_rgba, swizzled, border color only
    spec/arb_texture_compression/texwrap formats bordercolor/gl_compressed_rgba, border color only
    spec/arb_texture_cube_map/copyteximage cube
    spec/arb_texture_cube_map/copyteximage cube samples=2
    spec/arb_texture_cube_map/copyteximage cube samples=4
    spec/arb_texture_rectangle/copyteximage rect
    spec/arb_texture_rectangle/copyteximage rect samples=2
    spec/arb_texture_rectangle/copyteximage rect samples=4
    spec/ext_texture_array/copyteximage 2d_array
    spec/ext_texture_array/copyteximage 2d_array samples=2
    spec/ext_texture_array/copyteximage 2d_array samples=4
    
    Fixes: 469bbd8387d1 "broadcom/vc5: Move the formats table to per-V3D-version compile."
    Reviewed-by: Iago Toral Quiroga <itoral at igalia.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4934>
    (cherry picked from commit e3ecf48dda2ddabfbabdad83e19d280d0edb8246)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1dfbdca81d9bbc42dbd94cb7089de3975a559027
Author: Pierre Moreau <dev at pmoreau.org>
Date:   Tue May 5 13:13:19 2020 +0200

    clover/nir: Check the result of spirv_to_nir
    
    Fixes: deb04adf2ae ("clover: add support for passing kernels as nir to the driver")
    Signed-off-by: Pierre Moreau <dev at pmoreau.org>
    Reviewed-by: Karol Herbst <kherbst at redhat.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4901>
    (cherry picked from commit 38bbfd3a57d68abdc88a93b436eac9f30a397b0f)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a5d3bc88f4159eb74533e10895abe74db09ba6af
Author: Eric Engestrom <eric at engestrom.ch>
Date:   Thu May 7 16:06:47 2020 +0200

    .pick_status.json: Update to 772b15ad3227e08bb4e18932ac9ecf4c29271160



More information about the mesa-commit mailing list