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


Commits:
dd355ee9 by Dylan Baker at 2018-06-15T13:45:10-07:00
docs: Add release notes for 18.1.2

- - - - -
c41a7462 by Bas Nieuwenhuizen at 2018-06-15T13:55:04-07:00
radv: Fix output for sparse MRTs.

We need to init the cb_shader_format correctly with the changed
col_format, so this moves the col_format adjustment to before the
adjustment to before the cb_shader_mask gets generated.

Fixes: 06d3c650980 "radv: fix a GPU hang when MRTs are sparse"
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106903
CC: 18.1 <mesa-sta...@lists.freedesktop.org>
Reviewed-by: Dave Airlie <airl...@redhat.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
(cherry picked from commit 41dabdc47538fb7660f7063d9dd423473eaa2515)

- - - - -
888b7fca by Samuel Pitoiset at 2018-06-15T13:55:04-07:00
radv: don't fast clear HTILE for 16-bit depth surfaces on GFX8

This causes rendering issues in Shadow Warrior 2 with DXVK.

Cc: mesa-sta...@lists.freedesktop.org
Fixes: ccc64f3133 ("radv: enable TC-compat HTILE for 16-bit depth surfaces 
on GFX8")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106912
Signed-off-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
(cherry picked from commit 51e23d34190076159129dd7b449b95a1ac3d4949)

- - - - -
b2740629 by Samuel Pitoiset at 2018-06-15T13:55:04-07:00
radv: update the ZRANGE_PRECISION value for the TC-compat bug

On GFX8+, there is a bug that affects TC-compatible depth surfaces
when the ZRange is not reset after LateZ kills pixels.

The workaround is to always set DB_Z_INFO.ZRANGE_PRECISION to match
the last fast clear value. Because the value is set to 1 by default,
we only need to update it when clearing Z to 0.0.

We also need to set the depth clear regs and to update
ZRANGE_PRECISION when initializing a TC-compat depth image to 0.

Original patch from James Legg.

This fixes random CTS fails with
dEQP-VK.renderpass.suballocation.formats.d32_sfloat_s8_uint.input.*

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105396
CC: <mesa-sta...@lists.freedesktop.org>
Signed-off-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
(cherry picked from commit 68dead112e710b261ad33604175d635dec6afd34)

- - - - -
66bc41a3 by Marek Olšák at 2018-06-15T13:55:04-07:00
radeonsi/gfx9: fix si_get_buffer_from_descriptors for 48-bit pointers

This fixes:
GL45-CTS.pipeline_statistics_query_tests_ARB.functional_compute_shader_invocations

Cc: 18.0 18.1 <mesa-sta...@lists.freedesktop.org>
Reviewed-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
(cherry picked from commit 6d671078a8eb683a4a978ca4f9d4e41cbb399bf8)

- - - - -
49f43bdc by Marek Olšák at 2018-06-15T13:55:04-07:00
ac/gpu_info: report real total memory sizes

The change from MIN2 to MAX2 is intentional.

Cc: 18.1 <mesa-sta...@lists.freedesktop.org>
Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
(cherry picked from commit 95ecde42eb93b0ef1c65e60b5eeb20f9b2781fb4)

- - - - -
156d0230 by Dave Airlie at 2018-06-15T13:55:04-07:00
glsl: allow standalone semicolons outside main()

GLSL 4.60 offically added this but games and older CTS suites actually
had shaders that did this, we may as well enable it everywhere.

Adding stable because it appears apps in the wild do this.

Acked-by: Timothy Arceri <tarc...@itsqueeze.com>
Reviewed-by: Matt Turner <matts...@gmail.com>
Cc: <mesa-sta...@lists.freedesktop.org>
(cherry picked from commit babd1d526be4690204964f5e0a42f5df12f7f83b)

- - - - -
87453e9f by Lukas Rusak at 2018-06-15T13:55:04-07:00
meson: only build vl_winsys_dri.c when x11 platform is used

This seems to have been missed in the move from autotools

This fixes the following build issue:

../src/gallium/auxiliary/vl/vl_winsys_dri.c:34:10: fatal error: X11/Xlib-xcb.h: 
No such file or directory
 #include <X11/Xlib-xcb.h>
          ^~~~~~~~~~~~~~~~

Fixes: b1b65397d0c4978e36a84c0a1c98a4bd6cb9588e
       ("meson: Build gallium auxiliary")
Reviewed-by: Dylan Baker <dy...@pnwbakers.com>
(cherry picked from commit 1d92d6486a7685762f480fb33893b3c3db1fd21a)

- - - - -
2008ca24 by Lukas Rusak at 2018-06-15T13:55:04-07:00
meson: fix private libs when building without glx

I noticed that the generated pkg-config files will include
glx and x11 dependencies even when x11 isn't a selected platform.

This fixes the private libs and was tested by building kmscube

V2:
  - check if gallium-xlib is being used for glx

Fixes: 108d257a16859898f5ce0 "meson: build libEGL"
Reviewed-by: Dylan Baker <dy...@pnwbakers.com>
Reviewed-by: Eric Engestrom <eric.engest...@intel.com>
(cherry picked from commit 4cfc4cef80a85dea2b761efd9f6deb13198c9196)

- - - - -
ae394968 by Christian Gmeiner at 2018-06-15T13:55:04-07:00
util/bitset: include util/macro.h

BITSET_FFS(x) macro makes use of ARRAY_SIZE(x) macro which is
defined in util/macro.h. Include it directy to make usage more
straightforward.

Fixes: 692bd4a1ab9 ("util: replace Elements() with ARRAY_SIZE()")
Signed-off-by: Christian Gmeiner <christian.gmei...@gmail.com>
Reviewed-by: Eric Engestrom <eric.engest...@intel.com>
(cherry picked from commit efae1279936112cefe9fa1753998993df81d6201)

- - - - -
f3ec346a by Ian Romanick at 2018-06-15T13:55:04-07:00
glsl: Don't copy propagate from SSBO or shared variables either

Since SSBOs can be written by other GPU threads, copy propagating a read
can cause the value to magically change.  SSBO reads are also very
expensive, so doing it twice will be slower.

Haswell, Broadwell, and Skylake had similar results. (Skylake shown)
total instructions in shared programs: 14399120 -> 14399119 (<.01%)
instructions in affected programs: 684 -> 683 (-0.15%)
helped: 1
HURT: 0

total cycles in shared programs: 532978931 -> 532973113 (<.01%)
cycles in affected programs: 530484 -> 524666 (-1.10%)
helped: 1
HURT: 0

Signed-off-by: Ian Romanick <ian.d.roman...@intel.com>
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.olive...@intel.com>
Cc: mesa-sta...@lists.freedesktop.org
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106774
(cherry picked from commit 461a5c899c08064467abb635536381a5a5659280)

- - - - -
a4609fe8 by Ian Romanick at 2018-06-15T13:55:04-07:00
glsl: Don't copy propagate elements from SSBO or shared variables either

Since SSBOs can be written by a different GPU thread, copy propagating a
read can cause the value to magically change.  SSBO reads are also very
expensive, so doing it twice will be slower.

The same shader was helped by this patch and the previous.

Haswell, Broadwell, and Skylake had similar results. (Skylake shown)
total instructions in shared programs: 14399119 -> 14399113 (<.01%)
instructions in affected programs: 683 -> 677 (-0.88%)
helped: 1
HURT: 0

total cycles in shared programs: 532973113 -> 532971865 (<.01%)
cycles in affected programs: 524666 -> 523418 (-0.24%)
helped: 1
HURT: 0

Signed-off-by: Ian Romanick <ian.d.roman...@intel.com>
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.olive...@intel.com>
Cc: mesa-sta...@lists.freedesktop.org
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106774
(cherry picked from commit 37bd9ccd21b860d2b5ffea7e1f472ec83b68b43b)

- - - - -
c86a99ad by Samuel Pitoiset at 2018-06-18T10:43:19-07:00
radv: fix emitting the TCS regs on GFX9

The primitive ID is NULL and this generates an invalid
select instruction which crashes because one operand is NULL.

This fixes crashes in The Long Journey Home, Quantum Break
and Just Cause 3 with DXVK.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106756
CC: <mesa-sta...@lists.freedesktop.org>
Signed-off-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
(cherry picked from commit 5917761e3dddc968d5ccac9b282b7cb8d3da866f)

- - - - -
9b8c90fc by Eric Engestrom at 2018-06-18T10:43:57-07:00
radv: fix reported number of available VGPRs

It's a bit late to round up after an integer division.

Fixes: de889794134e6245e08a2 "radv: Implement VK_AMD_shader_info"
Signed-off-by: Eric Engestrom <eric.engest...@intel.com>
Reviewed-by: Alex Smith <asm...@feralinteractive.com>
(cherry picked from commit d85fef1e34657fc082b9a763de9499d324fbeebf)

- - - - -
6bc8fcbc by Eric Engestrom at 2018-06-18T10:44:03-07:00
radv: fix bitwise check

Fixes: 922cd38172b8a2bc286bd "radv: implement out-of-order rasterization 
when it's safe on VI+"
Signed-off-by: Eric Engestrom <eric.engest...@intel.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
(cherry picked from commit 4d08c1e7d15f7d2c0a406cf1c79314511778b38f)

- - - - -
7540acb1 by Eric Engestrom at 2018-06-18T13:30:18-07:00
meson: fix i965/anv/isl genX static lib names

Shouldn't make any functional difference, just that `liblibanv_gen90.a`
will now be called `libanv_gen90.a`.

Fixes: 3218056e0eb375eeda470 "meson: Build i965 and dri stack"
Fixes: d1992255bb29054fa5176 "meson: Add build Intel "anv" 
vulkan driver"
Signed-off-by: Eric Engestrom <eric.engest...@intel.com>
Reviewed-by: Tapani Pälli <tapani.pa...@intel.com>
Reviewed-by: Dylan Baker <dy...@pnwbakers.com>
(cherry picked from commit e8eb84826e30ffcb54f69a7aec9181f969418eb2)

Trivial merge conflicts resolved by Dylan.

- - - - -
4c07e44a by Tomeu Vizoso at 2018-06-19T08:26:40-07:00
virgl: Remove debugging left-overs

Some fprintfs were probably left unintentionally a few years ago and are
a bit of a nuisance.

Fixes: 2d3301e4d513 ("virgl: fix reference counting of prime handles")
       Cc: Rob Herring <r...@kernel.org>

Signed-off-by: Tomeu Vizoso <tomeu.viz...@collabora.com>
Reviewed-by: Dave Airlie <airl...@redhat.com>
(cherry picked from commit 9b1cb50ba47346dd8fcb8f2f5d69125d33a4a66e)

- - - - -
19655023 by Bas Nieuwenhuizen at 2018-06-19T08:26:53-07:00
ac/surface: Set compressZ for stencil-only surfaces.

We HTILE compress stencil-only surfaces too.

CC: 18.1 <mesa-sta...@lists.freedesktop.org>
Reviewed-by: Marek Olšák <marek.ol...@amd.com>
(cherry picked from commit 1a8501a9ddfff6c3eab47046e0e8a9dc17492bf0)

- - - - -
e979b79c by Marek Olšák at 2018-06-20T09:42:15-07:00
ac/gpu_info: add kernel_flushes_hdp_before_ib

Reviewed-by: Nicolai Hähnle <nicolai.haeh...@amd.com>
(cherry picked from commit b81149e258a492ed0c81058fb535f6bfdacb36da)

Conflicts:
        src/amd/common/ac_gpu_info.c

Conflicts resolved by Dylan

- - - - -
decb031b by Marek Olšák at 2018-06-20T09:44:17-07:00
radeonsi: always put persistent buffers into GTT on radeon

This improves performance for certain games.

Cc: 18.1 <mesa-sta...@lists.freedesktop.org>
Tested-by: Dieter Nützel <die...@nuetzel-hh.de>
(cherry picked from commit 9322974ec716b8c3b2e326559f663ff087daa38c)

- - - - -
564c8820 by Rob Clark at 2018-06-21T08:12:33-07:00
freedreno/ir3: fix base_vertex

Fixes: c366f422f0a nir: Offset vertex_id by first_vertex instead of base_vertex
Signed-off-by: Rob Clark <robdcl...@gmail.com>
(cherry picked from commit e1e40935b4adb60e47e90e6d83589c369a26b6e2)

- - - - -
3c1eaa59 by Emil Velikov at 2018-06-21T08:12:39-07:00
configure: use compliant grep regex checks

The current `grep "foo\|bar"' trips on some grep implementations, 
like
the FreeBSD one. Instead use `egrep "foo|bar"' as suggested by 
Stefan.

Cc: Stefan Esser <s...@freebsd.org>
Reported-by: Stefan Esser <s...@freebsd.org>
Bugzilla: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=228673
Fixes: 1914c814a6c ("configure: error out if building OMX w/o supported 
platform")
Fixes: 63e11ac2b5c ("configure: error out if building VA w/o supported 
platform")
Signed-off-by: Emil Velikov <emil.l.veli...@gmail.com>
Reviewed-by: Matt Turner <matts...@gmail.com>
(cherry picked from commit dfb1f2759c668ad0e2147ca0b29aed6fb2473451)

- - - - -
2a0015de by Emil Velikov at 2018-06-21T08:13:05-07:00
glsl/tests/glcpp: reinstate "error out if no tests found"

With the recent rework of converting the shell script to a python one
the check for actual tests was dropped.

Bring that back, since it was explicitly added considering we had a ~2
year period, during which the tests were not run.

v2: use raise Exception() over  print() & return false (Dylan)

Fixes: db8cd8e36771 ("glcpp/tests: Convert shell scripts to a python
script")
Cc: Dylan Baker <dy...@pnwbakers.com>
Signed-off-by: Emil Velikov <emil.veli...@collabora.com>
(cherry picked from commit d589eddc8be5240632d42ae1931b0b6a82ff524c)

- - - - -
dd14a0f3 by Marek Olšák at 2018-06-22T09:42:31-07:00
mesa: fix glGetInteger64v for arrays of integers

Cc: 18.1 <mesa-sta...@lists.freedesktop.org>
Reviewed-by: Timothy Arceri <tarc...@itsqueeze.com>
(cherry picked from commit a2790b134a912b84389022b96ef0ef78a7d2b83c)

- - - - -
fc0d0ad0 by Dylan Baker at 2018-06-22T14:43:22-07:00
cherry-ignore: Add 587e712eda95c31d88ea9d20e59ad0ae59afef4f

- - - - -
b5f154a8 by Samuel Pitoiset at 2018-06-25T08:39:18-07:00
radv: fix HTILE metadata initialization in presence of subpass clears

If the driver ends up by performing a slow depthstencil clear,
the HTILE metadata won't be initialized correctly.

This fixes random VM faults on Polaris while running CTS
with Bas's runner. This doesn't seem to regress performance.

CC: <mesa-sta...@lists.freedesktop.org>
Signed-off-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
(cherry picked from commit 07cb1373a23042de6904e918419bfa3963695795)

- - - - -
6a1ef7cc by Dylan Baker at 2018-06-25T08:40:18-07:00
meson: Fix auto option for va

The same as the previous two patches, but for the libva state tracker.

Fixes: 724916c8a84b5bba8f880f17da936585d52c97b6
       ("meson: dedup gallium-xvmc logic")
Signed-off-by: Dylan Baker <dylan.c.ba...@intel.com>
Reviewed-by: Eric Engestrom <eric.engest...@intel.com>
(cherry picked from commit 94cf3970925ec87d913a1549a42cdb03713fc4bb)

- - - - -
abe65eb5 by Dylan Baker at 2018-06-25T08:43:28-07:00
meson: Fix auto option for xvmc

This fixes the same problem as the previous patch did for vdpau, but for
xvmc.

Fixes: 724916c8a84b5bba8f880f17da936585d52c97b6
       ("meson: dedup gallium-xvmc logic")
Signed-off-by: Dylan Baker <dylan.c.ba...@intel.com>
Reviewed-by: Eric Engestrom <eric.engest...@intel.com>
(cherry picked from commit a6943bb4ce99ea7af7222552f1326fb80823d0b2)

Squashed with:

meson: Fix typo that breaks -Dgalium-xvmc=false

_xmvc -> _xvmc. Sigh

Fixes: a6943bb4ce99ea7af7222552f1326fb80823d0b2
       ("meson: Fix auto option for xvmc")
Signed-off-by: Dylan Baker <dylan.c.ba...@intel.com>
Reviewed-by: Kenneth Graunke <kenn...@whitecape.org>
Tested-by: Clayton Craft <clayton.a.cr...@intel.com>
(cherry picked from commit ced3df5623ca362a528ce06df46299701efa3644)

- - - - -
f77cae2c by Dylan Baker at 2018-06-25T08:43:39-07:00
meson: Correct behavior of vdpau=auto

Currently if vdpau is set to auto, it will be disabled only in cases
where gallium is disabled or the host OS is not supported (mac, haiku,
windows). However on (for example) Linux if libvdpau is not installed
then the build will error because of the unmet dependency. This corrects
auto to do the right thing, and not error if libvdpau is not installed.

Fixes: 992af0a4b8224bdb4809e01c2f00d2f32546aee5
       ("meson: dedup gallium-vdpau logic")
Signed-off-by: Dylan Baker <dylan.c.ba...@intel.com>
Reviewed-by: Eric Engestrom <eric.engest...@intel.com>
(cherry picked from commit d9a8008a93d87287b696627ea6dd01b278b6d579)

- - - - -
0747f76b by Samuel Pitoiset at 2018-06-26T08:27:27-07:00
radv: ignore pInheritanceInfo for primary command buffers

>From the Vulkan spec:
"If this is a primary command buffer, then this value is ignored."

CC: <mesa-sta...@lists.freedesktop.org>
Signed-off-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
(cherry picked from commit ba5e25ed293bc060be2ba7ed840a22458454b3cf)

- - - - -
f0f66ee4 by Andrii Simiklit at 2018-06-26T08:38:36-07:00
i965/gen6/gs: Handle case where a GS doesn't allocate VUE

We can not use the VUE Dereference flags combination for EOT
message under ILK and SNB because the threads are not initialized
there with initial VUE handle unlike Pre-IL.
So to avoid GPU hangs on SNB and ILK we need
to avoid usage of the VUE Dereference flags combination.
(Was tested only on SNB but according to the specification
SNB Volume 2 Part 1: 1.6.5.3, 1.6.5.6
the ILK must behave itself in the similar way)

v2: Approach to fix this issue was changed.
Instead of different EOT flags in the program end
we will create VUE every time even if GS produces no output.

v3: Clean up the patch.
Signed-off-by: Andrii Simiklit <andrii.simik...@globallogic.com>

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105399
CC: <mesa-sta...@lists.freedesktop.org>
Reviewed-by: Iago Toral Quiroga <ito...@igalia.com>
Tested-by: Mark Janes <mark.a.ja...@intel.com>
(cherry picked from commit 232c5d75ea8c9536a896a17c9156b8e2ad36a779)

- - - - -
915d9166 by Tapani Pälli at 2018-06-26T08:39:04-07:00
glsl: serialize data from glTransformFeedbackVaryings

While XFB has been enabled for cache, we did not serialize enough
data for the whole API to work (such as glGetProgramiv).

Fixes: 6d830940f7 "Allow shader cache usage with transform feedback"
Signed-off-by: Tapani Pälli <tapani.pa...@intel.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106907
Reviewed-by: Jordan Justen <jordan.l.jus...@intel.com>
(cherry picked from commit ab2643e4b06f63c93a57624003679903442634a8)

- - - - -
d96eecbd by Jason Ekstrand at 2018-06-26T08:40:14-07:00
nir: Handle call instructions in foreach_src

Even though they don't have regular sources, they do have derefs and
those may have implied sources that should be handled.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106980
Reviewed-by: Ian Romanick <ian.d.roman...@intel.com>
(Unique to 18.1)

- - - - -
bc67499b by Jason Ekstrand at 2018-06-26T08:40:30-07:00
nir/validate: Use the type from the tail of call parameter derefs

Otherwise, if what gets passed into the function call is a deref chain
longer than just a variable deref, we would use the type of the entire
variable rather than the type of the thing being dereferenced.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106980
Reviewed-by: Ian Romanick <ian.d.roman...@intel.com>
(Unique to 18.1)

- - - - -
696be229 by Dylan Baker at 2018-06-26T11:15:11-07:00
cherry-ignore: Ignore cac7ab1192eefdd8d8b3f25053fb006b5c330eb8

- - - - -
07049c0b by Samuel Pitoiset at 2018-06-27T08:21:19-07:00
radv: use separate bind points for the dynamic buffers

The Vulkan spec says:

   "pipelineBindPoint is a VkPipelineBindPoint indicating whether
    the descriptors will be used by graphics pipelines or compute
    pipelines. There is a separate set of bind points for each of
    graphics and compute, so binding one does not disturb the other."

CC: <mesa-sta...@lists.freedesktop.org>
Signed-off-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
(cherry picked from commit 7a57c827675f3bceecd3b59968e9e5b37dcafcef)

- - - - -
ed54f93d by Dylan Baker at 2018-06-27T08:31:24-07:00
cherry-ignore: add a2f5292c82ad07731d633b36a663e46adc181db9

- - - - -
765fdbe2 by Dylan Baker at 2018-06-29T10:29:48-07:00
VERSION: bump version to 18.1.3

- - - - -
f7e89b2f by Dylan Baker at 2018-06-29T10:36:11-07:00
docs: Add release notes for 18.1.3

- - - - -


30 changed files:

- VERSION
- bin/.cherry-ignore
- configure.ac
- + docs/relnotes/18.1.2.html
- + docs/relnotes/18.1.3.html
- meson.build
- src/amd/common/ac_gpu_info.c
- src/amd/common/ac_gpu_info.h
- src/amd/common/ac_surface.c
- src/amd/vulkan/radv_cmd_buffer.c
- src/amd/vulkan/radv_meta_clear.c
- src/amd/vulkan/radv_nir_to_llvm.c
- src/amd/vulkan/radv_pipeline.c
- src/amd/vulkan/radv_private.h
- src/amd/vulkan/radv_shader.c
- src/compiler/glsl/glcpp/tests/glcpp_test.py
- src/compiler/glsl/glsl_parser.yy
- src/compiler/glsl/opt_copy_propagation.cpp
- src/compiler/glsl/opt_copy_propagation_elements.cpp
- src/compiler/glsl/serialize.cpp
- src/compiler/nir/nir.c
- src/compiler/nir/nir_validate.c
- src/gallium/auxiliary/meson.build
- src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
- src/gallium/drivers/radeonsi/si_buffer.c
- src/gallium/drivers/radeonsi/si_descriptors.c
- src/gallium/winsys/radeon/drm/radeon_drm_winsys.c
- src/gallium/winsys/virgl/drm/virgl_drm_winsys.c
- src/intel/compiler/gen6_gs_visitor.cpp
- src/intel/isl/meson.build


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/mesa/compare/aa1f6934f83027c9f70d733781f3ebebf3c65721...f7e89b2f48c6fbbe5b3cedb1a9fcc1b4d47e64b0

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

Reply via email to