Timo Aaltonen pushed to branch debian-unstable at X Strike Force / lib / mesa
Commits: 6ee414e4 by Dylan Baker at 2021-09-21T10:14:30-07:00 docs/relnotes/21.2.2: Add SHA256 sum - - - - - 95d63a10 by Rhys Perry at 2021-09-21T10:17:10-07:00 aco: don't coalesce constant copies into non-power-of-two sizes Signed-off-by: Rhys Perry <pendingchao...@gmail.com> Reviewed-by: Daniel Schürmann <dan...@schuermann.dev> Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12894> - - - - - c9befde0 by Timur Kristóf at 2021-09-21T10:17:10-07:00 aco/optimize_postRA: Use iterators instead of operator[] of std::array. Also add a few more assertions to make sure the registers are within the bounds of the array. Cc: mesa-stable Signed-off-by: Timur Kristóf <timur.kris...@gmail.com> Reviewed-by: Rhys Perry <pendingchao...@gmail.com> Reviewed-by: Tony Wasserka <tony.wasse...@gmx.de> Reviewed-by: Joshua Ashton <jos...@froggi.es> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12894> - - - - - 362a808f by Marcin Ślusarz at 2021-09-21T10:17:10-07:00 intel/compiler: INT DIV function does not support source modifiers BSpec says that for all generations. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5281 CC: mesa-stable Signed-off-by: Marcin Ślusarz <marcin.slus...@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwer...@intel.com> Reviewed-by: Sagar Ghuge <sagar.gh...@intel.com> (chery picked from commit e0533ebf16edcb8b9f0687d3155417e6c1c53d35) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12893> - - - - - fbf76abb by Rob Clark at 2021-09-21T10:17:10-07:00 freedreno: Use correct key for binning pass shader We updated the key correctly for whether we wanted to use a safe_constlen binning pass variant, but then passed the wrong key to ir3_shader_variant(). Fixes: 1dd24bf27b2 ("freedreno: Share constlen between different stages properly") Signed-off-by: Rob Clark <robdcl...@chromium.org> (cherry picked from commit a79ac1bee14d6600cde2788bf136aa59b69a786f) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12876> - - - - - c4c1e0e9 by Dylan Baker at 2021-09-21T10:18:33-07:00 .pick_status.json: Update to d3511e8af21ac11b8e7f5305942624d1ae29a73a - - - - - 21e15a4e by Dylan Baker at 2021-09-21T10:19:24-07:00 .pick_status.json: Mark a79ac1bee14d6600cde2788bf136aa59b69a786f as backported - - - - - 8381b848 by Dylan Baker at 2021-09-21T10:19:40-07:00 .pick_status.json: Mark e0533ebf16edcb8b9f0687d3155417e6c1c53d35 as backported - - - - - a23c3167 by Dylan Baker at 2021-09-21T10:19:51-07:00 .pick_status.json: Mark f241bd3749cec55ca5fac9cb24f17553ab31c0e1 as backported - - - - - 6d612acf by Dylan Baker at 2021-09-21T10:19:52-07:00 .pick_status.json: Mark 268158a758551a46feb120af3f3cff5fb9292310 as backported - - - - - 6008fce0 by Marek Vasut at 2021-09-21T10:19:56-07:00 freedreno: Handle timeout == PIPE_TIMEOUT_INFINITE and rollover The fd_fence_finish() may be passed a special timeout value PIPE_TIMEOUT_INFINITE. This gets propagated all the way to get_abs_timeout(), where it gets converted to a huge timeout value and passed down to the kernel. At least on iMX53, the kernel may complain about this value being too large and emit a backtrace. The relevant piece of information there is the following: schedule_timeout: wrong timeout value bf94984b Per suggestion by Rob Clark, fix this in get_abs_timeout() by picking the same rollover implementation present in etnaviv. This fixes one part of the problem where the tv_nsec becomes larger than NSEC_PER_SEC, which is invalid. However, the PIPE_TIMEOUT_INFINITE is sufficiently large to make tv_secs larger than KTIME_SEC_MAX, which makes kernel-side ktime_set() return KTIME_MAX and that in turn triggers the above "wrong timeout value N" message. Fix this by setting the timeout to large enough value in case of PIPE_TIMEOUT_INFINITE. While the timeout is not truly infinite, the timeout is long enough as anything longer than a few seconds means the GPU got hung. The "util/timespec.h" is added so we can use NSEC_PER_SEC instead of ad-hoc constant 1000000000 . The "pipe/p_defines.h" is needed for PIPE_TIMEOUT_INFINITE. This problem can be reliably triggered on iMX53 using Qt5 with EGLFS support, using the qtbase examples, as follows: /usr/share/examples/opengl/qopenglwidget/qopenglwidget -platform eglfs Fixes: f3cc0d27475 ("freedreno: import libdrm_freedreno + redesign submit") Signed-off-by: Marek Vasut <ma...@denx.de> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12886> (cherry picked from commit 6da27271740c7d57cb2822c1864be121b8e8344a) - - - - - ab996bc0 by Rob Clark at 2021-09-21T10:20:00-07:00 freedreno/drm: Don't return shared/control bo's to cache They can never be allocated from the cache, as fd_bo_state() would return FD_BO_STATE_UNKNOWN Fixes: 7dabd624649 ("freedreno/drm: Userspace fences") Signed-off-by: Rob Clark <robdcl...@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11176> (cherry picked from commit 21fcb2657f27e1a73059b026c10064d9c0970933) - - - - - 1e5becfd by Tapani Pälli at 2021-09-21T10:20:04-07:00 mesa: fix timestamp enum with EXT_disjoint_timer_query Extension implementation missed GL_TIMESTAMP_EXT for Get* functions, commit 5d58fea660c added GetInteger64vEXT support but obviously we need to support the enum as well ... Cc: mesa-stable Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5361 Signed-off-by: Tapani Pälli <tapani.pa...@intel.com> Reviewed-by: Marek Olšák <marek.ol...@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12890> (cherry picked from commit 1a6c01a61b1cced6b11465fe1178e6ead0b88362) - - - - - eeb37a2e by Boris Brezillon at 2021-09-21T10:20:05-07:00 panfrost: RGB10_A2_SNORM is not a valid texture format on v6+ Cc: mesa-stable Fixes: c6bdd976e611 ("panfrost: Split out v6/v7 format tables") Signed-off-by: Boris Brezillon <boris.brezil...@collabora.com> Reviewed-by: Alyssa Rosenzweig <aly...@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12508> (cherry picked from commit bab84c62d5ac00d6a3b0209995cc2fd6cea68313) - - - - - 340a2ca2 by Boris Brezillon at 2021-09-21T10:20:06-07:00 panfrost: RGB332_UNORM is not a valid texture format on v6+ Cc: mesa-stable Fixes: c6bdd976e611 ("panfrost: Split out v6/v7 format tables") Signed-off-by: Boris Brezillon <boris.brezil...@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12508> (cherry picked from commit 8805509fff8811b906c112e6b3e78101eb205bc1) - - - - - 00d88f46 by Italo Nicola at 2021-09-21T10:20:06-07:00 panfrost: fix null deref when no color buffer is attached Do not dereference color buffer #0 in the SFBD code path if no color buffer is attached, as with depth-only attachments. Fixes a crash running glmark2 -b shadow on Mali T720. Signed-off-by: Italo Nicola <italonic...@collabora.com> Fixes: c746747cb82 ("panfrost: fix GL_EXT_multisampled_render_to_texture regression") Reviewed-by: Boris Brezillon <boris.brezil...@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12927> (cherry picked from commit 7682a5de0449658f17bdcf4e591df523208528df) - - - - - e519df28 by Zachary Michaels at 2021-09-21T10:20:07-07:00 X11: Ensure that VK_SUBOPTIMAL_KHR propagates to user code Commit 0245b825 switched from returning the error code VK_ERROR_OUT_OF_DATE_KHR to returning the success code VK_SUBOPTIMAL_KHR. Prior to that commit, the error code caused all code paths to fail immediately, but the success code does not. Currently the success code is not recorded in some scenarios, resulting in a result of VK_SUCCESS instead. This breaks applications that rely on the result (per the spec) to trigger resizes. This commit ensures that the proper VK_SUBOPTIMAL_KHR success code is set as a sticky status (as comments indicate was intended), ensuring that it is propagated to user code. Fixes #5331 Reviewed-by: Lionel Landwerlin <lionel.g.landwer...@intel.com> Reviewed-by: Daniel Stone <dani...@collabora.com> Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12782> (cherry picked from commit fc5ea6a05437d729b22f37a4e96d4ca5354cd372) - - - - - 70fb1270 by Timur Kristóf at 2021-09-21T10:20:08-07:00 ac/nir: Fix match_mask to work correctly for VS outputs. match_mask checks the intrinsic type and decides whether it's per-patch or not. VS don't have per-patch outputs, so this causes wrong behaviour there. Found using the GCC undefined behavior sanitizer. Fixes the following error: runtime error: shift exponent 18446744073709551584 is too large for 64-bit type 'long unsigned int' Closes: #5319 Fixes: bf966d1c1dd968116b8b547ca2739f5113caccb5 Signed-off-by: Timur Kristóf <timur.kris...@gmail.com> Reviewed-by: Rhys Perry <pendingchao...@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12719> (cherry picked from commit 13e467a147dd4f33ae223dded226d85dc24c1a87) - - - - - 75080375 by Timur Kristóf at 2021-09-21T10:20:09-07:00 nir: Exclude non-generic patch variables from get_variable_io_mask. These are I/O variables which are not going to be removed anyway. However, get_variable_io_mask handles their location incorrectly. Found using the GCC undefined behavior sanitizer. Fixes the following error: runtime error: shift exponent 4294967258 is too large for 64-bit type 'long unsigned int' Closes: #5319 Fixes: cf5f8f55c3e25508fb975b263d6430a93442247a Signed-off-by: Timur Kristóf <timur.kris...@gmail.com> Reviewed-by: Rhys Perry <pendingchao...@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12719> (cherry picked from commit 872d21820fc0bd81e5e081847547b0102215f4fe) - - - - - 82586b98 by Boris Brezillon at 2021-09-21T10:20:09-07:00 pan/blit: Fix a NULL dereference in the preload path The ZS view can be NULL if a stencil-only buffer is attached to the FB. Fixes: 1de393fec539 ("panfrost: Fix ZS reloading on Bifrost v6") Signed-off-by: Boris Brezillon <boris.brezil...@collabora.com> Reviewed-by: Alyssa Rosenzweig <aly...@collabora.com> Reviewed-by: Tomeu Vizoso <tomeu.viz...@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12095> (cherry picked from commit 9f4dab0f2d370f0d3768e0951fa2871b0bdd131b) - - - - - 7cdbc61b by Dylan Baker at 2021-09-21T19:37:35-07:00 .pick_status.json: Mark 6373dd814a74d84becbbbfc42673df147adb6e9b as denominated - - - - - dee5347b by Dylan Baker at 2021-09-21T19:38:34-07:00 .pick_status.json: Mark eb7d2ef070a8819c2859c10559496836275848e2 as denominated - - - - - 4dd007b4 by Dylan Baker at 2021-09-21T19:38:35-07:00 .pick_status.json: Mark a810e58051b4a065b0aade86c45bf7ed254fc726 as denominated - - - - - cbfae5da by Dylan Baker at 2021-09-22T09:09:23-07:00 .pick_status.json: Update to 400da4900e2d72ee807cc3eedac9ace1dfd5dfba - - - - - e12e2067 by Charmaine Lee at 2021-09-22T09:09:28-07:00 svga: fix render target views leak Use create_backed_surface_view helper function to create/reuse alternate surface view when the to-be-bound surface view was created in a different context. This fixes render target views leak running gazebo. Cc: mesa-stable Reviewed-by: Neha Bhende <bhen...@vmware.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12952> (cherry picked from commit e5dc900226f2017e3e706b311e93285b3ce922a4) - - - - - 74e314e4 by Jordan Justen at 2021-09-22T09:10:04-07:00 iris: Disable I915_FORMAT_MOD_Y_TILED_GEN12* on adl-p/display 13 Ref: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12908 Cc: mesa-stable Fixes: e435511b580 ("intel/dev: Add device info for ADL GT2") Signed-off-by: Jordan Justen <jordan.l.jus...@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwer...@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12973> (cherry picked from commit d4174f5f052f614a10df2ebc905aec8c4897b057) - - - - - b04d75a6 by Jordan Justen at 2021-09-22T09:15:13-07:00 intel/dev: Add display_ver and set adl-p to 13 Ref: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12908 Cc: mesa-stable Fixes: e435511b580 ("intel/dev: Add device info for ADL GT2") Signed-off-by: Jordan Justen <jordan.l.jus...@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwer...@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12973> (cherry picked from commit c746bf4c5c811d7d5614ca13504e6412ac13e911) Conflicts: src/intel/dev/intel_device_info.c - - - - - e9162c77 by Dylan Baker at 2021-09-23T19:33:18-07:00 .pick_status.json: Update to dc354b8fda928861b7dfff3f8f53159e0053f9f5 - - - - - e08581fd by Emma Anholt at 2021-09-23T19:35:50-07:00 mesa: Fix missing CopyTexImage formats for OES_required_internalformat. All our GLES2-only divers were failing these KHR tests because we were missing new OES_required_internalformat internalformats for CopyTexImage. Cc: mesa-stable Reviewed-by: Juan A. Suarez <jasua...@igalia.com> Reviewed-by: Tapani Pälli <tapani.pa...@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12962> (cherry picked from commit e470d9fae5d98d66c754bae6c3e5d199f8ce1fdb) - - - - - afd99909 by Dylan Baker at 2021-09-24T09:32:05-07:00 .pick_status.json: Update to b653164973bbd3053d3b9ed37c4362af96346900 - - - - - e83db91f by Rhys Perry at 2021-09-24T09:32:08-07:00 aco/tests: add idep_amdgfxregs_h Signed-off-by: Rhys Perry <pendingchao...@gmail.com> Reviewed-by: Timur Kristóf <timur.kris...@gmail.com> Fixes: 9bf30c4a5cb ("aco/tests: add tests for form_hard_clauses()") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12017> (cherry picked from commit 8cf37fc8a83612292bef99b28d55a60740f0916c) - - - - - bb48243d by Dylan Baker at 2021-09-27T10:03:36-07:00 .pick_status.json: Update to ecc6d78b0541d66765d434dd4158066d6c664f8e - - - - - 134d11e4 by Timur Kristóf at 2021-09-27T10:03:40-07:00 ac/nir/nggc: Refactor save_reusable_variables. This makes the code more elegant and also fixes the mistake of skipping the blocks that come before loops. Fossil DB changes on Sienna Cichlid with NGGC on: Totals from 1026 (0.80% of 128647) affected shaders: SpillSGPRs: 3817 -> 4035 (+5.71%) CodeSize: 5582856 -> 5538732 (-0.79%); split: -0.89%, +0.10% Instrs: 1106907 -> 1100180 (-0.61%); split: -0.68%, +0.07% Latency: 10084948 -> 10052197 (-0.32%); split: -0.37%, +0.05% InvThroughput: 1567012 -> 1564949 (-0.13%); split: -0.16%, +0.03% SClause: 39789 -> 39075 (-1.79%); split: -2.33%, +0.54% Copies: 95184 -> 96456 (+1.34%); split: -0.19%, +1.53% Branches: 44087 -> 44093 (+0.01%); split: -0.01%, +0.02% PreSGPRs: 47584 -> 51009 (+7.20%); split: -0.61%, +7.80% Fixes: 0bb543bb60f93bea5b1c0ed6382ced49e659273e Signed-off-by: Timur Kristóf <timur.kris...@gmail.com> Reviewed-by: Daniel Schürmann <dan...@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13001> (cherry picked from commit cb19ebe7baca5f2c4c547094ae3088ad3035be84) - - - - - 0f066dbc by Timur Kristóf at 2021-09-27T10:03:42-07:00 ac/nir/nggc: Don't reuse uniform values from divergent control flow. With NGG culling, the shaders are split into two parts: the top part that computes just the position output, and the bottom part which produces the other outputs. To reduce redundancy between the two, I added some code to reuse uniform variables between them. However, there is an edge case I didn't think about: because of vertex repacking, it is possible for the bottom part to process a different vertex. Therefore it can take a different divergent code path (though it must still take the same uniform code path). Due to this, when a uniform value comes from divergent control flow, this may be undefined in the bottom part. This commit stops reusing uniform variables from divergent control flow, to fix issues that arise from this. Fossil DB stats on Sienna Cichlid with NGGC on: Totals from 1723 (1.34% of 128647) affected shaders: VGPRs: 89312 -> 89184 (-0.14%); split: -0.15%, +0.01% SpillSGPRs: 4575 -> 120 (-97.38%) CodeSize: 10846424 -> 10873836 (+0.25%); split: -0.68%, +0.93% MaxWaves: 34582 -> 34602 (+0.06%); split: +0.06%, -0.01% Instrs: 2124471 -> 2128835 (+0.21%); split: -0.51%, +0.72% Latency: 7274569 -> 7293899 (+0.27%); split: -0.22%, +0.48% InvThroughput: 1637130 -> 1635490 (-0.10%); split: -0.17%, +0.07% VClause: 25141 -> 25414 (+1.09%); split: -0.02%, +1.10% SClause: 56367 -> 59503 (+5.56%); split: -1.36%, +6.93% Copies: 230704 -> 219313 (-4.94%); split: -5.49%, +0.55% Branches: 72781 -> 72681 (-0.14%); split: -0.21%, +0.07% PreSGPRs: 118766 -> 100176 (-15.65%); split: -15.70%, +0.05% PreVGPRs: 76876 -> 76833 (-0.06%) Fixes: 0bb543bb60f93bea5b1c0ed6382ced49e659273e Signed-off-by: Timur Kristóf <timur.kris...@gmail.com> Reviewed-by: Daniel Schürmann <dan...@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13001> (cherry picked from commit 09f89d15e4c983bf8762e53e0f7d62f32480ecfd) - - - - - a7e18d47 by Dylan Baker at 2021-09-28T12:31:50-07:00 .pick_status.json: Update to fbbe00c0b7f7aa5aca42a82358332eb2de56b9af - - - - - c4ca2fc7 by Ella-0 at 2021-09-28T12:31:55-07:00 v3d: add R10G10B10X2_UNORM to format table Fixes following piglit fails: spec@ext_framebuffer_object@fbo-blending-formats spec@ext_framebuffer_object@fbo-blending-formats@GL_RGB10 Cc: mesa-stable Reviewed-by: Jose Maria Casanova Crespo <jmcasan...@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13051> (cherry picked from commit e043b97704f52d96ce33a688d2d2869b4aa7fad2) - - - - - f4669242 by Rhys Perry at 2021-09-28T12:31:56-07:00 radv: don't require a GS copy shader to use the cache with NGG VS+GS Fixes dEQP-VK.pipeline.cache.no_cache_control.readwrite_cache.pipeline_from_get_data.vertex_stage_geometry_stage_fragment_stage Signed-off-by: Rhys Perry <pendingchao...@gmail.com> Reviewed-by: Samuel Pitoiset <samuel.pitoi...@gmail.com> Fixes: 7e664a53835 ("radv: Don't generate GS copy shader when the pipeline has NGG.") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12741> (cherry picked from commit 59084f05fc8ba6aa3b8fb0221792da3ab050784c) - - - - - f7c62264 by Lionel Landwerlin at 2021-09-28T12:31:57-07:00 nir: fix opt_memcpy src/dst mixup Signed-off-by: Lionel Landwerlin <lionel.g.landwer...@intel.com> Fixes: f6667cb0ce828a ("nir: Add a memcpy optimization pass") Reviewed-by: Caio Marcelo de Oliveira Filho <caio.olive...@intel.com> Reviewed-by: Jason Ekstrand <ja...@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13079> (cherry picked from commit daa8a81d99f80b75e51421bfebd98a2e1e7ac6fd) - - - - - ccf0bd1a by Marek Olšák at 2021-09-28T12:31:58-07:00 radeonsi: fix a depth texturing performance regression on gfx6-7 Fixes: 0580d4c1 "radeonsi: enable HTILE with mipmapping on gfx9+" Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5398 Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-pra...@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13048> (cherry picked from commit 4cb008719c0fc9705dd16416e99ff7ae1b3a7fa1) - - - - - 00b88496 by Marek Olšák at 2021-09-28T12:31:58-07:00 radeonsi: fix clearing index_size for NGG fast launch Cc: 21.1 21.2 <mesa-sta...@lists.freedesktop.org> Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-pra...@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13048> (cherry picked from commit b1cf504f7837b7a165da0956f54e0cc539860666) - - - - - 0c1b419f by Timo Aaltonen at 2021-09-29T13:51:36+03:00 rules: Build with -O2 for ppc64el. - - - - - 63e03b84 by Timo Aaltonen at 2021-09-29T13:51:40+03:00 Build with llvm 13. - - - - - 7d3660db by Dylan Baker at 2021-09-29T09:07:16-07:00 lavapipe/ci: Add additional failing test - - - - - 33f262ca by Qiang Yu at 2021-09-29T17:22:31+00:00 radeonsi: fix ps SI_PARAM_LINE_STIPPLE_TEX arg This arg size should be 1 instead of 3. It does not affect functionality because we does not enable it in SPI_PS_INPUT_ADDR. But it does affect the VGPR number that LLVM produce when LLVM still count with all PS function arguments. Reviewed-by: Marek Olšák <marek.ol...@amd.com> Signed-off-by: Qiang Yu <yuq...@gmail.com> (cherry picked from commit 6f9f350622b5fd4ccf5a9decf4fac884bb28f984) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13053> - - - - - a6ac82dc by Neha Bhende at 2021-09-29T18:09:22+00:00 auxiliary/indices: convert primitive type PIPE_PRIM_PATCHES Few tessellation related piglit test are crashing. This patch fixes unhandled case Tested with piglit Reviewed-by: Charmaine Lee <charmai...@vmware.com> (cherry picked from commit 0e1c962cc105a9330caf22266e1962b049c13454) (cherry picked from commit f2b08decf7d058e830f6dc55266e77d82a7318ab) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12950> - - - - - 0904da02 by Dylan Baker at 2021-09-29T12:40:49-07:00 docs: add release notes for 21.2.3 - - - - - 5da276cf by Dylan Baker at 2021-09-29T12:41:44-07:00 VERSION: bump for 21.2.3 release - - - - - 2ac5ea54 by Timo Aaltonen at 2021-09-30T15:19:45+03:00 Merge branch 'upstream-unstable' into debian-unstable - - - - - ffb86d46 by Timo Aaltonen at 2021-09-30T15:21:22+03:00 bump the version - - - - - 9ff618fb by Timo Aaltonen at 2021-10-04T10:15:33+03:00 Disable LLVM support on riscv64, it doesn't have JIT. (Closes: #995618) - - - - - a3c88bd2 by Timo Aaltonen at 2021-10-04T15:18:38+03:00 release to sid - - - - - 0 changed files: The diff was not included because it is too large. View it on GitLab: https://salsa.debian.org/xorg-team/lib/mesa/-/compare/7a83e045002c1c5b6c07700761fbfeb2d959f9d0...a3c88bd2b3b72eec893eb02d02099c137a811a6d -- View it on GitLab: https://salsa.debian.org/xorg-team/lib/mesa/-/compare/7a83e045002c1c5b6c07700761fbfeb2d959f9d0...a3c88bd2b3b72eec893eb02d02099c137a811a6d You're receiving this email because of your account on salsa.debian.org.