[Git][xorg-team/lib/mesa][debian-experimental] 51 commits: .pick_status.json: Update to b8d253b30c0a8c1878f2429f0a4df0a068bbf0aa

2024-11-22 Thread Timo Aaltonen (@tjaalton)


Timo Aaltonen pushed to branch debian-experimental at X Strike Force / lib / 
mesa


Commits:
c11a9317 by Dylan Baker at 2024-11-14T09:31:30-08:00
.pick_status.json: Update to b8d253b30c0a8c1878f2429f0a4df0a068bbf0aa

Part-of: ;

- - - - -
439879ab by Timothy Arceri at 2024-11-14T09:31:31-08:00
glsl/nir: fix function cloning at link time

As per the code comment added in this commit the nir produced from
glsl to nir doesn't always keep function declarations before the
code that calls them e.g. calls from within other function
implementations. The change in this commit works around this problem by
first cloning all function declarations in a first pass, then cloning
the implementations in a second pass once we have filled the remap
table.

Fixes: cbfc225e2bda ("glsl: switch to a full nir based linker")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/12115

Reviewed-by: Alejandro Piñeiro 
Acked-by: Marek Olšák 
(cherry picked from commit 59b25492795eb415b8d894b2238cb6bcc6b17169)

Part-of: ;

- - - - -
41af3ea1 by David Heidelberg at 2024-11-14T09:31:32-08:00
util: Drop 3Dnow optimisation leftovers

Fixes: a3218e65d1e5 ("mesa: remove long dead 3Dnow optimisation") # 
24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit ae85e6920c18c6f850c22e183f2f740c45b69ad3)

Part-of: ;

- - - - -
f6653b1f by David Heidelberg at 2024-11-14T09:31:33-08:00
util: Remove MMX/MMXext detection code

Currently pointless, Pentium II or Celeron and later has SSE.

Cc: mesa-stable # 24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit a78c2bf2a41252045f7bb695d02d75fcd73a3957)

Part-of: ;

- - - - -
cbb58f26 by David Heidelberg at 2024-11-14T09:31:34-08:00
util: Drop ancient Intel CPU detection

We don't use it for anything.

Cc: mesa-stable # 24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit ca947e1295a8aedd4b7f09ca89ab285156b1309e)

Part-of: ;

- - - - -
9116861d by David Heidelberg at 2024-11-14T09:31:34-08:00
util: drop XOP detection code

Introduced in 2013 with prospect of being used in future.
... 11 years later.

Fixes: 4b45b61fef6e ("util: add avx2 and xop detection to cpu detection 
code") # 24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit 962b996d4c569835e0c453a60bb4680d432d30f1)

Part-of: ;

- - - - -
a725b137 by David Heidelberg at 2024-11-14T09:31:35-08:00
llvmpipe: align with u_cpu_detect struct changes

Cc: mesa-stable # 24.3
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit d21f7f75ff38ed26769235daf98af4a18b02f0ab)

Part-of: ;

- - - - -
ecc3f03d by David Rosca at 2024-11-14T09:31:36-08:00
radv/video: Fix H264 slice control

This needs to use aligned size, otherwise it will output two
slices when the size is not 16 aligned.

Fixes: 54d499818ca ("radv/video: add initial support for encoding with 
h264.")

Reviewed-by: Dave Airlie 
(cherry picked from commit 6a121f150750f0a3316a317274b14a4d0ac077f6)

Part-of: ;

- - - - -
42822bbc by David Rosca at 2024-11-14T09:31:36-08:00
radv/video: Fix HEVC slice control

This needs to use aligned size, otherwise it will output two
slices when the size is not 64 aligned.

Fixes: 967e4e09dee ("radv/video: add h265 encode support")
Reviewed-by: Dave Airlie 
(cherry picked from commit e4ec135d8bbd94ef552c94fe1d09cf326417b14d)

Part-of: ;

- - - - -
bab33913 by David Rosca at 2024-11-14T09:31:37-08:00
radv/video: Report correct encodeInputPictureGranularity

Only aligned size can be encoded.

Fixes: 54d499818ca ("radv/video: add initial support for encoding with 
h264.")
Reviewed-by: Dave Airlie 
(cherry picked from commit e941acfb9d055f2cef4bc2f21166e7c2c4821099)

Part-of: ;

- - - - -
c1517edd by David Rosca at 2024-11-14T09:31:38-08:00
radv/video: Avoid selecting rc 

[Git][xorg-team/lib/mesa][upstream-experimental] 48 commits: .pick_status.json: Update to b8d253b30c0a8c1878f2429f0a4df0a068bbf0aa

2024-11-22 Thread Timo Aaltonen (@tjaalton)


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


Commits:
c11a9317 by Dylan Baker at 2024-11-14T09:31:30-08:00
.pick_status.json: Update to b8d253b30c0a8c1878f2429f0a4df0a068bbf0aa

Part-of: ;

- - - - -
439879ab by Timothy Arceri at 2024-11-14T09:31:31-08:00
glsl/nir: fix function cloning at link time

As per the code comment added in this commit the nir produced from
glsl to nir doesn't always keep function declarations before the
code that calls them e.g. calls from within other function
implementations. The change in this commit works around this problem by
first cloning all function declarations in a first pass, then cloning
the implementations in a second pass once we have filled the remap
table.

Fixes: cbfc225e2bda ("glsl: switch to a full nir based linker")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/12115

Reviewed-by: Alejandro Piñeiro 
Acked-by: Marek Olšák 
(cherry picked from commit 59b25492795eb415b8d894b2238cb6bcc6b17169)

Part-of: ;

- - - - -
41af3ea1 by David Heidelberg at 2024-11-14T09:31:32-08:00
util: Drop 3Dnow optimisation leftovers

Fixes: a3218e65d1e5 ("mesa: remove long dead 3Dnow optimisation") # 
24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit ae85e6920c18c6f850c22e183f2f740c45b69ad3)

Part-of: ;

- - - - -
f6653b1f by David Heidelberg at 2024-11-14T09:31:33-08:00
util: Remove MMX/MMXext detection code

Currently pointless, Pentium II or Celeron and later has SSE.

Cc: mesa-stable # 24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit a78c2bf2a41252045f7bb695d02d75fcd73a3957)

Part-of: ;

- - - - -
cbb58f26 by David Heidelberg at 2024-11-14T09:31:34-08:00
util: Drop ancient Intel CPU detection

We don't use it for anything.

Cc: mesa-stable # 24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit ca947e1295a8aedd4b7f09ca89ab285156b1309e)

Part-of: ;

- - - - -
9116861d by David Heidelberg at 2024-11-14T09:31:34-08:00
util: drop XOP detection code

Introduced in 2013 with prospect of being used in future.
... 11 years later.

Fixes: 4b45b61fef6e ("util: add avx2 and xop detection to cpu detection 
code") # 24.3
Reviewed-by: Marek Olšák 
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit 962b996d4c569835e0c453a60bb4680d432d30f1)

Part-of: ;

- - - - -
a725b137 by David Heidelberg at 2024-11-14T09:31:35-08:00
llvmpipe: align with u_cpu_detect struct changes

Cc: mesa-stable # 24.3
Reviewed-by: Yonggang Luo 
Signed-off-by: David Heidelberg 
(cherry picked from commit d21f7f75ff38ed26769235daf98af4a18b02f0ab)

Part-of: ;

- - - - -
ecc3f03d by David Rosca at 2024-11-14T09:31:36-08:00
radv/video: Fix H264 slice control

This needs to use aligned size, otherwise it will output two
slices when the size is not 16 aligned.

Fixes: 54d499818ca ("radv/video: add initial support for encoding with 
h264.")

Reviewed-by: Dave Airlie 
(cherry picked from commit 6a121f150750f0a3316a317274b14a4d0ac077f6)

Part-of: ;

- - - - -
42822bbc by David Rosca at 2024-11-14T09:31:36-08:00
radv/video: Fix HEVC slice control

This needs to use aligned size, otherwise it will output two
slices when the size is not 64 aligned.

Fixes: 967e4e09dee ("radv/video: add h265 encode support")
Reviewed-by: Dave Airlie 
(cherry picked from commit e4ec135d8bbd94ef552c94fe1d09cf326417b14d)

Part-of: ;

- - - - -
bab33913 by David Rosca at 2024-11-14T09:31:37-08:00
radv/video: Report correct encodeInputPictureGranularity

Only aligned size can be encoded.

Fixes: 54d499818ca ("radv/video: add initial support for encoding with 
h264.")
Reviewed-by: Dave Airlie 
(cherry picked from commit e941acfb9d055f2cef4bc2f21166e7c2c4821099)

Part-of: ;

- - - - -
c1517edd by David Rosca at 2024-11-14T09:31:38-08:00
radv/video: Avoid selecting r

mesa_24.3.0-1_source.changes ACCEPTED into experimental

2024-11-22 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Nov 2024 13:43:07 +0200
Source: mesa
Built-For-Profiles: noudeb
Architecture: source
Version: 24.3.0-1
Distribution: experimental
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Timo Aaltonen 
Changes:
 mesa (24.3.0-1) experimental; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 d92b186b03edb9e207411a9b769c53b5303d59c4 6648 mesa_24.3.0-1.dsc
 0d7612715c4c7b87452a97b8133a00f3bc33ebd3 30566304 mesa_24.3.0.orig.tar.xz
 2b91895900edd518855b6577ed0806acd29e0c11 228 mesa_24.3.0.orig.tar.xz.asc
 6f1ffcf7ea2798702515606ada2067b5d4c9c8eb 105648 mesa_24.3.0-1.debian.tar.xz
 56b1502f5bcbd31606df514e91ae0aa4c667bef4 10610 mesa_24.3.0-1_source.buildinfo
Checksums-Sha256:
 9782d165cba1986674b911e89f444e07cf3888386cba2074d50c529a295e6dfe 6648 
mesa_24.3.0-1.dsc
 97813fe65028ef21b4d4e54164563059e8408d8fee3489a2323468d198bf2efc 30566304 
mesa_24.3.0.orig.tar.xz
 a89304c07f97b44f40e02c45f6c7dbf33b20bb696830b21cb579d0a10a81139e 228 
mesa_24.3.0.orig.tar.xz.asc
 36fac546687ae98104f0f6687a3447902b432201390acc0195d172cb4ff45a88 105648 
mesa_24.3.0-1.debian.tar.xz
 bc2fdc7ab801b16185d0ba7fe0211efb0f37d139fb7d355bbe936e65910b1989 10610 
mesa_24.3.0-1_source.buildinfo
Files:
 dad841b497bd746bcc3f2f0e8238e9fb 6648 graphics optional mesa_24.3.0-1.dsc
 ebe66cacd3d8e840ef893b0132da5a73 30566304 graphics optional 
mesa_24.3.0.orig.tar.xz
 ae28e77688af1205fd7293b3ab69c313 228 graphics optional 
mesa_24.3.0.orig.tar.xz.asc
 0186c91829f9fc5937e6a362e2a66456 105648 graphics optional 
mesa_24.3.0-1.debian.tar.xz
 69188437b332453bc039e371adb9e6f1 10610 graphics optional 
mesa_24.3.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEdS3ifE3rFwGbS2Yjy3AxZaiJhNwFAmdAblsACgkQy3AxZaiJ
hNxv5xAAhSAEMQNYoNCOIa3ZCeIQj2MVwdIwu6c9//MbgGGZJofCtT935LXeJhfh
8t2YkeY3vFUMreof7blEVgMD0mpBgbIa/Wx29+P9Kbiq4yp0kd3Vwp3+qukcri4H
5XavLgfVd8vwdn+gmX72yf3pw1SN9ZEV/Itn8iZY19HjyFfjrGo6f/MX4M/Ey7UT
Quqjn6T+Jsq8mDO0E0D7RZoMdvZFUBRE5/taMNcGas8dkiVMdlabm0vpyjHBHUBi
B+Fxga5gw7y9qzOW5qUkN/1+TMNkKaG9gP98HHuPOqE608MPo2p7/RBiyCFXsuGc
uvNDBqY0+3112nY0AfqIafw2xgGThZUUx/6lRq61cSKsfo9JwWZMz2s2YAu9cv6H
zhTl/YX3uMJdCYzsGTRa05jR0uaLSL+JrW32chjdiaFRbx9VJvWhPdP67nDrrFX9
fiFw/AqueczzYhDsuNDCQfnktids6nUgnCBxwGAGFoWobtfRf6wrzYRz6o72hKnX
lzk01Mr8X/yQtgEscUbx8j/zKCAtfQYp+x2057V37VBD5dK/USKsMQh4h01f3b0H
UMU6+yeidmW3++n3ZeTRMg7pPBzbYXfRP+ylfaI5OUEtVXYLP+bMvdT/cN91EC/I
dZzLZ2tFK4TWByNafKahyOeQQ4t10Vv+L/V6jBF1Vl1VnOT1IEQ=
=BRX7
-END PGP SIGNATURE-



pgp59svLs1n9S.pgp
Description: PGP signature


[Git][xorg-team/lib/mesa] Pushed new tag debian/24.3.0-1

2024-11-22 Thread Timo Aaltonen (@tjaalton)


Timo Aaltonen pushed new tag debian/24.3.0-1 at X Strike Force / lib / mesa

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




Processing of mesa_24.3.0-1_source.changes

2024-11-22 Thread Debian FTP Masters
mesa_24.3.0-1_source.changes uploaded successfully to localhost
along with the files:
  mesa_24.3.0-1.dsc
  mesa_24.3.0.orig.tar.xz
  mesa_24.3.0.orig.tar.xz.asc
  mesa_24.3.0-1.debian.tar.xz
  mesa_24.3.0-1_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)