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


Commits:
c17b0e37 by Dylan Baker at 2020-11-23T11:20:23-08:00
docs: Add relnotes for 20.2.3

- - - - -
d6a3111a by Dylan Baker at 2020-11-23T11:21:30-08:00
.pick_status.json: Update to a92f597b98bb032b904c7c8a8c3a9fe798b51915

- - - - -
10c2cddf by Krunal Patel at 2020-11-25T10:00:00-08:00
radeon/vce: Bitrate not updated when changing framerate

Issue: Encoding parameters not updated after changing FrameRate

Root Cause:
In rvce_begin_frame, need_rate_control was enabled if the target_bitrate,
quant_i_frames, quant_p_frames, quant_b_frames or rate_ctrl_method
changes. Due to this the rate_control() was not updating the encoder
parameters with new framerate, peak_bits_per_picture_integer and
avg_target_bits_per_picture

Fix:
Added the condition where we will check if there is a change in
other parameters and enable need_rate_control. Eventually updating the
encoder parameters with new framerate and bitrate.

Signed-off-by: Krunal Patel 
<[email protected]>
Reviewed-by: Leo Liu <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7696>
(cherry picked from commit 35613c752f5826dcc5bbfbfb8e6ab0ab3127b7d3)

- - - - -
7cb4663c by SureshGuttula at 2020-12-01T10:01:15-08:00
gallium: update abs_delta segementation parameter

This patch updates segmentation_abs_or_delta_update value based on
VP9 bitstream header info.

Netflix videos are showing corrupted output when codec is HW vp9
and segemantion enabled.This change will fix the corruption issue.

Signed-off-by: SureshGuttula <[email protected]>
Reviewed-by: Leo Liu <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7290>
(cherry picked from commit bef6007c3aa40eee069250bd796e72f6d8a82341)

- - - - -
fc699c4a by SureshGuttula at 2020-12-01T10:02:42-08:00
radeon/vcn : Corrected dpb_size calculation for VP9_2

Currently dpb_size for VP9 profile0 and profile2 is same eventhough
for profile2 dpb_size is  multiplied by extra 3/2 and we are
seeing VM_L2_PROTECTION_FAULT error and ring vcn_dec timeout because
of less dpb_size for VP9_2.

This patch will correct dpb_size for VP9_2 and fixes the issue.

Signed-off-by: SureshGuttula <[email protected]>
Reviewed-by: Leo Liu <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7480>
(cherry picked from commit 956228da3a11a83d938c929415efb375ffc2ca1f)

- - - - -
45509d12 by Dylan Baker at 2020-12-01T10:02:50-08:00
.pick_status.json: Update to 89f6b72f19dbc503386643c6283047bdb1013bef

- - - - -
85a5106c by Ian Romanick at 2020-12-01T11:25:17-08:00
intel/compiler: Rotate instructions ROR and ROL cannot have source modifiers

I checked the Bspec for both Gen11 and Gen12, and it appears that rotate
instructions cannot have source modifiers or saturate modifer.  Saturate
was already handled.

Fixes: 1e92e83856b ("intel/compiler: Emit ROR and ROL instruction")
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Reviewed-by: Sagar Ghuge <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7650>
(cherry picked from commit 6edc2a3d40406f5b0a5edd5bcccd3232ad50a61f)

- - - - -
25412edb by Eric Engestrom at 2020-12-01T11:25:18-08:00
gitlab-ci: drop deprecated platforms that snuck in when nobody was watching

... even though I did review that commit. My bad :]

Fixes: c56f09124b195c5cbaab ("gitlab-ci: Move classic driver testing to a 
new meson-classic job")
Signed-off-by: Eric Engestrom <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5844>
(cherry picked from commit 4da8323a14b58303b41826382f1951131171da0f)

- - - - -
1b657961 by Erik Faye-Lund at 2020-12-01T11:25:20-08:00
zink: fix layered resolves

Until recently, we ended up using u_blitter here, because
info->render_condition_enable was always true here. But when we recently
fixed that overly broad check, this broke.

So let's fix layered-resolves, by actually checking if the resource has
layers respect them in that case, similar to what we do in blit_native.

Fixes: 19906022e22 ("zink: more accurately track supported blits")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3843
Reviewed-By: Mike Blumenkrantz <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7737>
(cherry picked from commit 2ac396e2e5b966a247b698dcc44456fff1ffa0df)

- - - - -
160d7e80 by Dave Airlie at 2020-12-01T11:25:21-08:00
llvmpipe/setup: move point stats collection earlier.

You have to count the stats pre-culling here.

Just like dc261cdd42380 did for lines.

VK-GL-CTS dEQP-VK.query_pool.statistics_query.clipping_primitives*point_list

Cc: <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7705>
(cherry picked from commit 2ed54033def4e56e2ec9de7d25f7d4db30523b77)

- - - - -
99aec40f by Rhys Perry at 2020-12-01T11:25:24-08:00
nir/unsigned_upper_bound: fix buffer overflow in search_phi_bcsel

It should only recurse if there's enough space to add the phi sources..

Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Daniel Schürmann <[email protected]>
Fixes: 72ac3f60261 ("nir: add nir_unsigned_upper_bound and 
nir_addition_might_overflow")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7748>
(cherry picked from commit 65fbae16e37b5f349a0d0feb8d54ba132a1f02f4)

- - - - -
2a74f0ce by Pierre-Eric Pelloux-Prayer at 2020-12-01T11:25:25-08:00
radeonsi/gfx10: flush gfx cs on ngg -> legacy transition

with a sequence like this:

  glClear(STENCIL)
  glBeginTransformFeedback()
  ...
  glEndTransformFeedback()
  glClear(STENCIL)

The second clear sometimes may produce an unexpected result.

Calling si_flush_gfx_cs() when doing ngg -> legacy transition seems to be a
valid workaround (both for the synthetic reproducer and the real Blender bug).

Using flush flags or events (BOTTOM_OF_PIPE_TS, RESET_TO_LOWEST_VGT) didn't 
help.

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2941
Cc: mesa-stable
Reviewed-by: Marek Olšák <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7750>
(cherry picked from commit 0b3bd7c5167c7d7a87ded47730641a4103996591)

- - - - -
bfc05f36 by Timur Kristóf at 2020-12-01T11:25:26-08:00
aco/optimizer: Only set scc_needed when it is actually needed.

Not every p_cbranch uses the SCC, but our optimizer thought so.

Fixes: 8a32f57fff56b3b94f1b5589feba38016f39427c
Signed-off-by: Timur Kristóf <[email protected]>
Reviewed-by: Daniel Schürmann <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7677>
(cherry picked from commit 8bd3fefb74bb731d509f971cc89c687a0fd99feb)

- - - - -
ec53c72f by Lionel Landwerlin at 2020-12-01T11:25:27-08:00
anv: fix descriptor pool leak in VMA object

Quoting the spec :

   "When a pool is destroyed, all descriptor sets allocated from the
    pool are implicitly freed and become invalid. Descriptor sets
    allocated from a given pool do not need to be freed before
    destroying that descriptor pool."

This implies we might leak nodes allocated in the vma object.

Signed-off-by: Lionel Landwerlin <[email protected]>
Fixes: 0a6d2593b8b63d ("anv: Allocate descriptor buffers from the BO 
cache")
Reviewed-by: Jason Ekstrand <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7796>
(cherry picked from commit 5d55ca9c300a6e240cf9216bba203321b7b44c90)

- - - - -
099633b6 by Danylo Piliaiev at 2020-12-01T11:25:28-08:00
freedreno/a6xx: Fix typo in height alignment calculation in a6xx layout

Fixes KHR-GL31.texture_size_promotion.functional

Fixes: e49748521ec9182e8d2eec823182cc463709123f
Signed-off-by: Danylo Piliaiev <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7792>
(cherry picked from commit a569ffeb83daaa3f3c179e0d315a5079334835f8)

- - - - -
17f0681f by Rhys Perry at 2020-12-01T11:25:28-08:00
nir: fix sampler_lod_parameters_pan indices

Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Fixes: deaebc82a73 "nir: Add load_sampler_lod_paramaters_pan 
intrinsic"
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6587>
(cherry picked from commit f6407b9b7d311de0669375dc005cc4cfc42ffe1f)

- - - - -
127a1b12 by Marek Olšák at 2020-12-01T11:25:33-08:00
mesa: call FLUSH_VERTICES before changing sampler uniforms

Fixes: 9545139ce5f "mesa: skip FLUSH_VERTICES() if no samplers were 
changed"

Reviewed-by: Ian Romanick <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6946>
(cherry picked from commit 0a2117bc9e01bc821a6f766c516665d2aa5b47d8)

- - - - -
3577ac21 by Christian Gmeiner at 2020-12-01T11:25:34-08:00
etnaviv/drm: fix evil-twin etna_drm_table_lock

Cc: <[email protected]>
Signed-off-by: Christian Gmeiner <[email protected]>
Reviewed-by: Lucas Stach <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7832>
(cherry picked from commit aad0c7c6b8e73141f5dd5aed0c091efd5dba5b99)

- - - - -
62eb2f49 by Tapani Pälli at 2020-12-01T12:45:39-08:00
iris: initialize shared screen->vtbl only once

Screen is shared among contexts, other context might be already using
vtbl while another initializes it again.

 ==45872== Possible data race during write of size 8 at 0x5DDAE78 by thread #549
 ==45872== Locks held: 1, at address 0x5D1B6F8
 ==45872==    at 0x6D66D91: gen9_init_state (iris_state.c:7816)
 ==45872==    by 0x6BA0A31: iris_create_context (iris_context.c:342)
 ==45872==    by 0x621F390: st_api_create_context (st_manager.c:917)
 ==45872==    by 0x620E6F9: dri_create_context (dri_context.c:163)
 ==45872==    by 0x6A40DB1: driCreateContextAttribs (dri_util.c:480)
 ==45872==    by 0x540B963: dri2_create_context (egl_dri2.c:1583)
 ==45872==    by 0x53FB84E: eglCreateContext (eglapi.c:821)
 ==45872==
 ==45872== This conflicts with a previous read of size 8 by thread #544
 ==45872== Locks held: 1, at address 0x5F6E0E0
 ==45872==    at 0x6CB779E: blorp_alloc_binding_table (iris_blorp.c:167)
 ==45872==    by 0x6CAEF70: blorp_emit_surface_states (blorp_genX_exec.h:1540)
 ==45872==    by 0x6CB67F9: blorp_exec (blorp_genX_exec.h:2016)
 ==45872==    by 0x6CB7AFE: iris_blorp_exec (iris_blorp.c:307)
 ==45872==    by 0x70F5916: try_blorp_blit (blorp_blit.c:2145)
 ==45872==    by 0x70F5FCA: do_blorp_blit (blorp_blit.c:2273)
 ==45872==    by 0x70F778F: blorp_copy (blorp_blit.c:2803)
 ==45872==    by 0x6BB9EB6: iris_copy_region (iris_blit.c:725)

v2: move as genX(init_screen_state) (Lionel)

Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7544>
(cherry picked from commit 460287adcadf1c03b13fccd397fcd9d270c4d31d)

Conflicts:
        src/gallium/drivers/iris/iris_screen.c

- - - - -
64b117c4 by Dylan Baker at 2020-12-02T15:06:58-08:00
amd/llvm: run clang-format

So that code applies cleanly from master. This uses the same
.clang-format settings that master does

Equivalent to 82d2d73e03eb851a6de4e8d9528d46a1c9374f4a, which has other
changes.

- - - - -
e0cf53b1 by Marek Olšák at 2020-12-02T15:07:06-08:00
ac/nir: fix a typo in ac_are_tessfactors_def_in_all_invocs

I think it only made the pass return false if there was a barrier

Fixes: 2832bc972bf - ac/nir_to_llvm: add ac_are_tessfactors_def_in_all_invocs()

Reviewed-by: Timothy Arceri <[email protected]>
Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7623>
(cherry picked from commit 96593847445bd4f80ef65040dda5f74c26c7a80a)

- - - - -
751c242e by Dylan Baker at 2020-12-03T10:41:09-08:00
.pick_status.json: Update to 872c4bcd27db7b7ca26abe9fc090ae26d502156f

- - - - -
eaf61d8a by Dylan Baker at 2020-12-03T10:41:27-08:00
pick-ui: don't grab the mouse

It's super annoying

- - - - -
d3dec24a by Rhys Perry at 2020-12-03T10:45:10-08:00
aco: don't combine precise max(min()) to med3

fossil-db (Navi):
Totals from 241 (0.18% of 137413) affected shaders:
CodeSize: 856280 -> 856308 (+0.00%); split: -0.00%, +0.00%
Instrs: 164220 -> 164514 (+0.18%); split: -0.00%, +0.18%
Cycles: 1031916 -> 1033092 (+0.11%); split: -0.00%, +0.11%
VMEM: 77855 -> 78514 (+0.85%); split: +0.85%, -0.01%
SMEM: 20501 -> 20593 (+0.45%); split: +0.46%, -0.01%
Copies: 9791 -> 9790 (-0.01%); split: -0.03%, +0.02%

Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7045>

- - - - -
7ea1f6ff by Rhys Perry at 2020-12-03T10:45:10-08:00
aco: fix combine_constant_comparison_ordering() NaN check with 16/64-bit

No fossil-db changes.

Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7045>

- - - - -
944bdf25 by Rhys Perry at 2020-12-03T10:45:10-08:00
aco: disallow various v_add_u32 opts if modifiers are used

Check for clamp, SDWA or DPP. The optimization isn't possible with SDWA
and DPP, so it would have been skipped anyway. Doing any of these with a
clamp modifier present would be incorrect.

No fossil-db changes.

Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7045>

- - - - -
e902dd86 by Rhys Perry at 2020-12-03T10:45:10-08:00
aco: disable omod if the sign of zeros should be preserved

The RDNA ISA doc says that omod doesn't preserve -0.0 in 6.2.2. LLVM
appears to always disable omod in this situation, but clamp is unaffected..

Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Fixes: df645fa369d ("aco: implement VK_KHR_shader_float_controls")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7605>

- - - - -
25b8f1c1 by Rhys Perry at 2020-12-03T10:45:10-08:00
aco: fix fp16 *0.5 omod

We were testing for -0.5 instead.

Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Fixes: 1210e0bd620 ("aco: create 16-bit input and output modifiers")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7605>

- - - - -
a9f4a654 by Lucas Stach at 2020-12-03T10:47:16-08:00
etnaviv: fix disabling of INT filter for real

Missing a copy of the pipe_sampler_state into the etna_sampler_state object
lead to the texture_use_int_filter() to always see a max_anisotropy of 0, so
the INT filter wasn't disabled when necessary. Also state emission should
never change the state objects, as this might also lead to stale information
being kept around the in the state object.

Fixes: 89a41dae7702 (etnaviv: do not use int filter when
                     anisotropic filtering is used)

Cc: <[email protected]>
Signed-off-by: Lucas Stach <[email protected]>
Reviewed-by: Christian Gmeiner <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7638>

- - - - -
2f493068 by Marek Olšák at 2020-12-03T10:49:05-08:00
radeonsi: fix a memory leak in si_create_dcc_retile_cs

Fixes: 1f21396431a - radeonsi: add support for displayable DCC for multi-RB 
chips

Reviewed-by: Pierre-Eric Pelloux-Prayer 
<[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7721>
(cherry picked from commit e64d5cc4d6c0b950883be0882f9b7ad3401965c1)

- - - - -
cd94b261 by Marek Olšák at 2020-12-03T10:49:05-08:00
radeonsi: fix a nasty bug in si_pm4.c

If you did:
  si_pm4_set_reg(pm4, reg, val0);
  si_pm4_cmd_add(pm4, val1);
  si_pm4 set_reg(pm4, reg + 4, val1);

it wrote val0 to reg, val1 to reg + 4, and val2 to reg + 8.

This fixes it by clearing last_opcode in si_pm4_cmd_add, so that
si_pm4_set_reg doesn't try to combine set_reg calls across si_pm4_cmd_add.

Fixes: da78d50bc87 - radeonsi: make si_pm4_cmd_begin/end static and simplify 
all usages

Reviewed-by: Pierre-Eric Pelloux-Prayer 
<[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7721>
(cherry picked from commit 0d4f1dcd155be753ff49cd763be916cf701cda25)

- - - - -
3b2f3e62 by Marek Olšák at 2020-12-03T10:49:06-08:00
radeonsi: disable WGP mode on gfx10.3 to prevent hangs

I think that reducing the CU mask to 1 disabled CU per SA broke the WGP mode
on VanGogh, causing a hang. To be sure, disable it on all chips.

Fixes: 9538b9a68ed - radeonsi: add support for Sienna Cichlid

Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7721>
(cherry picked from commit 69c927debeb705ec46b50d8e5ddfacb81264b244)

- - - - -
b313702a by James Park at 2020-12-03T10:51:54-08:00
radv: Fix leak in radv_amdgpu_winsys_destroy()

Fixes: fa97061a823 ("radv/winsys: Add binary syncobj ABI changes for 
timeline semaphores.")

Reviewed-by: Samuel Pitoiset <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7866>
(cherry picked from commit 6ec0953e22cfea4e4869e45b784a13f44b65c275)

 Conflicts:
        src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c

- - - - -
81bddb2f by Daniel Stone at 2020-12-03T10:52:09-08:00
freedreno: Add missing dependency to build

computerator depends on ir3_parser.h, which is a generated file, but
this dependency is not expressed in the build.

Fixes: 1e8808a4a0f ("freedreno/ir3: refactor out helper to compile shader 
from asm")
Signed-off-by: Daniel Stone <[email protected]>
Reviewed-by: Erik Faye-Lund <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7870>
(cherry picked from commit 9eee4054848c0d2f51818c549354cc156ca22487)

- - - - -
bcc8db86 by Eric Anholt at 2020-12-03T10:52:10-08:00
freedreno: Fix leak of u_transfer_helper.

Fixes: d1465b3aeee3 ("freedreno: use u_transfer_helper")
Reviewed-by: Rob Clark <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7695>
(cherry picked from commit 9cc8fc7bbc4a4d7fe4d3635be207daf2a6672662)

- - - - -
d6fd7acf by Eric Anholt at 2020-12-03T10:52:10-08:00
gallium: Fix leak of bound SSBOs at CSO context destruction.

Cc: mesa-stable
Reviewed-by: Rob Clark <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7695>
(cherry picked from commit 634384e4a09d897e0f045e6e99b787804ef4fe40)

- - - - -
17d19582 by Eric Anholt at 2020-12-03T10:52:11-08:00
gallivm: Fix max const buffer count.

llvmpipe was reporting 32 max const buffers, while sizing its arrays to 16
according to gallivm's #define.

Fixes: 1d35f77228ad ("gallivm,llvmpipe,draw: Support multiple constant 
buffers.")
Reviewed-by: Marek Olšák <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7695>
(cherry picked from commit d90107a2002891ae0f5e9b1ac9ecd8789c9e1969)

- - - - -
5f9912a4 by Eric Anholt at 2020-12-03T10:52:12-08:00
gallium: Fix leak of currently bound UBOs at CSO context destruction.

Cc: mesa-stable
Reviewed-by: Rob Clark <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7695>
(cherry picked from commit daaf5f1d1868bebec7931a51753236a850ebbd24)

- - - - -
fbc6a528 by Eric Anholt at 2020-12-03T10:52:51-08:00
freedreno: Break out of "should we free the entry" loop once 
we've freed.

Fixes a use-after-free of the state on the next iteration when it was
probably just destroyed.

Fixes: 6de01faac5a2 ("freedreno/a6xx: invalidate tex state cache entries 
on rebind")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7695>
(cherry picked from commit d3c67d7e7ec6b9cf10fbea0d08e92751b7b0fbae)

- - - - -
bfff15f0 by Dylan Baker at 2020-12-04T12:10:59-08:00
docs: add release notes for 20.2.4

- - - - -
24257bfe by Dylan Baker at 2020-12-04T12:11:14-08:00
bump version for 20.2.4 release

- - - - -


30 changed files:

- .gitlab-ci.yml
- .pick_status.json
- VERSION
- bin/pick-ui.py
- docs/relnotes/20.2.3.rst
- + docs/relnotes/20.2.4.rst
- src/amd/compiler/aco_optimizer.cpp
- src/amd/compiler/tests/test_optimizer.cpp
- src/amd/llvm/ac_llvm_build.c
- src/amd/llvm/ac_llvm_build.h
- src/amd/llvm/ac_llvm_cull.c
- src/amd/llvm/ac_llvm_cull.h
- src/amd/llvm/ac_llvm_util.c
- src/amd/llvm/ac_llvm_util.h
- src/amd/llvm/ac_nir_to_llvm.c
- src/amd/llvm/ac_nir_to_llvm.h
- src/amd/llvm/ac_shader_abi.h
- src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
- src/compiler/nir/nir_intrinsics.py
- src/compiler/nir/nir_range_analysis.c
- src/etnaviv/drm/etnaviv_bo_cache.c
- src/etnaviv/drm/etnaviv_device.c
- src/etnaviv/drm/etnaviv_priv.h
- src/freedreno/computerator/meson.build
- src/freedreno/fdl/fd6_layout.c
- src/gallium/auxiliary/cso_cache/cso_context.c
- src/gallium/auxiliary/gallivm/lp_bld_limits.h
- src/gallium/drivers/etnaviv/etnaviv_texture_desc.c
- src/gallium/drivers/etnaviv/etnaviv_texture_state.c
- src/gallium/drivers/freedreno/a6xx/fd6_texture.c


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/mesa/-/compare/8440307a613a49f2cf86dc009c8fb07012fdab92...24257bfe63c59c526bfe19bf32b247bf7552aabc

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/mesa/-/compare/8440307a613a49f2cf86dc009c8fb07012fdab92...24257bfe63c59c526bfe19bf32b247bf7552aabc
You're receiving this email because of your account on salsa.debian.org.


Reply via email to