- 22 Nov, 2019 8 commits
-
-
Guido Gunther authored
-
Guido Gunther authored
This reverts commit 14cb9718. Seems this wasn't done in Debian this time
-
Guido Gunther authored
This makes sure we don't block migration on these packages for amd64 in pureos. Signed-off-by:
Guido Günther <guido.gunther@puri.sm>
-
Guido Gunther authored
This makes sure we don't block migration on these packages for amd64 in pureos. Signed-off-by:
Guido Günther <guido.gunther@puri.sm>
-
Guido Gunther authored
This makes sure we don't block migration on these packages for amd64 in pureos. Signed-off-by:
Guido Günther <guido.gunther@puri.sm>
-
Guido Gunther authored
-
Guido Gunther authored
Use find -type l | while read dest; do src=$(readlink -f $dest); rm $dest; cp $src $dest; done do make dpkg-source happy. Signed-off-by:
Guido Günther <guido.gunther@puri.sm>
-
Guido Gunther authored
Tagging upload of mesa 19.2.4-1 to unstable.
-
- 19 Nov, 2019 1 commit
-
-
Guido Gunther authored
Signed-off-by:
Guido Günther <guido.gunther@puri.sm>
-
- 18 Nov, 2019 3 commits
-
-
Timo Aaltonen authored
-
Timo Aaltonen authored
-
Timo Aaltonen authored
-
- 13 Nov, 2019 3 commits
-
-
Dylan Baker authored
-
Dylan Baker authored
-
Lionel Landwerlin authored
The change made in 88d66583 ("mesa: check draw buffer completeness on glClearBufferfi/glClearBufferiv") correctly updated the state prior to checking the framebuffer completeness on glClearBufferiv but not in glClearBufferfi. Signed-off-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by:
Anuj Phogat <anuj.phogat@gmail.com> Fixes: 88d66583 ("mesa: check draw buffer completeness on glClearBufferfi/glClearBufferiv") Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2072 (cherry picked from commit f93bb903)
-
- 07 Nov, 2019 7 commits
-
-
Timo Aaltonen authored
-
Timo Aaltonen authored
-
Timo Aaltonen authored
-
Timo Aaltonen authored
-
Timo Aaltonen authored
create-gles-pc-files-with-old-glvnd.diff: Drop the revert with a proposed patch to fix creating gles pc files with old glvnd.
-
Timo Aaltonen authored
-
Timo Aaltonen authored
-
- 06 Nov, 2019 2 commits
-
-
Dylan Baker authored
-
Dylan Baker authored
-
- 05 Nov, 2019 4 commits
-
-
Dylan Baker authored
Otherwise if glvnd is not installed systemwide, but only in a prefix, it's headers wont be found. This happens because if it's headers are in /usr/include/ then another dependence will provide the necessary -I arguments and compilation will work. Fixes: 035ec7a2 ("meson: Add support for EGL glvnd") Acked-by:
Eric Engestrom <eric@engestrom.ch> (cherry picked from commit 5d085ad0)
-
Paulo Zanoni authored
Commit 5847de6e implemented a restriction that applies to ICL, but wrongly marked it as also applying to GLK. Reviewers or MR !1125 pointed this, and the commit history shows removal of GLK to parts of the patch, but it turns there was still a left-over GLK check in the code. This code was breaking some of the i8vec2 tests on GLK, for example: dEQP-VK.subgroups.arithmetic.compute.subgroupadd_i8vec2 Removing the GLK check solves the issue for GLK. I don't see a reason on why implementing this restriction would actually break GLK, so there's still more to investigate here since this bug may be affecting ICL+, but let's apply the real GLK fix while we analyze and discuss the other possible issues. Fixes: 5847de6e ("intel/compiler: don't use byte operands for src1 on ICL") BSpec: 3017 Reviewed-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by:
Matt Turner <mattst88@gmail.com> Signed-off-by:
Paulo Zanoni <paulo.r.zanoni@intel.com> (cherry picked from commit b57383a9)
-
Kenneth Graunke authored
In 2ca0d913, we began updating cso_fb->layers to the actual layer count, rather than 0. This fixed cases where we were setting "Force Zero RTA Index Enable" even when doing layered rendering. Sadly, it also broke the check entirely: cso_fb->layers is now 1 for non-layered cases, but the Force Zero RTA Index check was still comparing for 0. Fixes: 2ca0d913 ("iris: Fix framebuffer layer count") (cherry picked from commit fc7b7480)
-
Dylan Baker authored
Python has the identity operator `is`, and the equality operator `==`. Using `is` with strings sometimes works in CPython due to optimizations (they have some kind of cache), but it may not always work. Fixes: 96c4b135 ("nir/algebraic: Don't put quotes around floating point literals") Reviewed-by:
Matt Turner <mattst88@gmail.com> (cherry picked from commit 717606f9)
-
- 04 Nov, 2019 11 commits
-
-
Jon Turney authored
Since struct timespec's tv_sec member is of type time_t, adjust the expected value to allow for the truncation which will occur with 32-bit time_t. Reviewed-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by:
Adam Jackson <ajax@redhat.com> (cherry picked from commit dd1dba80) Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2043
-
Lionel Landwerlin authored
Signed-off-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> Cc: <mesa-stable@lists.freedesktop.org> Reviewed-by:
Marek Olšák <marek.olsak@amd.com> (cherry picked from commit 88d66583)
-
Dylan Baker authored
-
Jason Ekstrand authored
Some of the tests were actually relying on some of those uninitialized bits to be non-zero. In particular, a couple want use_softpin = true. Cc: mesa-stable@lists.freedesktop.org Reviewed-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> (cherry picked from commit 9076e9f3)
-
Jason Ekstrand authored
Fixes: 731c4adc "anv/allocator: Add support for non-userptr" Reviewed-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> (cherry picked from commit bb257e18)
-
Pierre-Eric Pelloux-Prayer authored
If the DrawBuffer sample count is > 1 and msaa is enabled we must also enable msaa when clearing it. Fixes: ea5b7de1 ("radeonsi: make gl_SampleMaskIn = 0x1 when MSAA is disabled") Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/1991Reviewed-by:
Marek Olšák <marek.olsak@amd.com> Tested-by:
Witold Baryluk <witold.baryluk@gmail.com> (cherry picked from commit 8a723282)
-
Bas Nieuwenhuizen authored
The resulting locale is not used for Vulkan, and it is not reference counted, giving issues when multiple instances are created. CC: 19.2 19.3 <mesa-stable@lists.freedesktop.org> Reviewed-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by:
Samuel Pitoiset <samuel.pitoiset@gmail.com> (cherry picked from commit 3e86d553)
-
Bas Nieuwenhuizen authored
The resulting locale is not used for Vulkan, and it is not reference counted, giving issues when multiple instances are created. CC: 19.2 19.3 <mesa-stable@lists.freedesktop.org> Reviewed-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by:
Samuel Pitoiset <samuel.pitoiset@gmail.com> (cherry picked from commit 72f858fc)
-
Bas Nieuwenhuizen authored
The resulting locale is not used for Vulkan, and it is not reference counted, giving issues when multiple instances are created. CC: 19.2 19.3 <mesa-stable@lists.freedesktop.org> Reviewed-by:
Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by:
Samuel Pitoiset <samuel.pitoiset@gmail.com> (cherry picked from commit 344ba56b)
-
Bas Nieuwenhuizen authored
libdrm returns -errno instead of directly the ioctl ret of -1. Fixes: 1c3cda7d "radv: Add syncobj signal/reset/wait to winsys." Reviewed-by:
Samuel Pitoiset <samuel.pitoiset@gmail.com> (cherry picked from commit ec770085)
-
Ilia Mirkin authored
Observed an issue when looking at the code generatedy by the image-vertex-attrib-input-output piglit test. Even though the test itself worked fine (due to TIC 0 being used for the image), this needs to be fixed. Signed-off-by:
Ilia Mirkin <imirkin@alum.mit.edu> Cc: mesa-stable@lists.freedesktop.org (cherry picked from commit 1b9d1e13)
-
- 31 Oct, 2019 1 commit
-
-
Jonathan Marek authored
Fixes remaining failures in these deqp tests (tested on GC3000/GC7000L): dEQP-GLES2.functional.polygon_offset.* Fixes: 6c3c05dc ("etnaviv: fix polygon offset") Signed-off-by:
Jonathan Marek <jonathan@marek.ca> Reviewed-by:
Christian Gmeiner <christian.gmeiner@gmail.com> (cherry picked from commit 7b524e1a)
-