[Git][xorg-team/app/piglit][pristine-tar] pristine-tar data for piglit_0~git20231002-24207f5be.orig.tar.xz

2023-10-06 Thread Jordan Justen (@jljusten)


Jordan Justen pushed to branch pristine-tar at X Strike Force / app / piglit


Commits:
549865f3 by Jordan Justen at 2023-10-06T09:09:24+00:00
pristine-tar data for piglit_0~git20231002-24207f5be.orig.tar.xz

- - - - -


2 changed files:

- + piglit_0~git20231002-24207f5be.orig.tar.xz.delta
- + piglit_0~git20231002-24207f5be.orig.tar.xz.id


Changes:

=
piglit_0~git20231002-24207f5be.orig.tar.xz.delta
=
Binary files /dev/null and b/piglit_0~git20231002-24207f5be.orig.tar.xz.delta 
differ


=
piglit_0~git20231002-24207f5be.orig.tar.xz.id
=
@@ -0,0 +1 @@
+bddc95d029b3b1b68c1ee5c5aae3e689d0408271



View it on GitLab: 
https://salsa.debian.org/xorg-team/app/piglit/-/commit/549865f3006a38486f5cbb3862086293a1c94ba1

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/app/piglit/-/commit/549865f3006a38486f5cbb3862086293a1c94ba1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/app/piglit] Pushed new tag debian/0_git20231002-24207f5be-1

2023-10-06 Thread Jordan Justen (@jljusten)


Jordan Justen pushed new tag debian/0_git20231002-24207f5be-1 at X Strike Force 
/ app / piglit

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/app/piglit/-/tree/debian/0_git20231002-24207f5be-1
You're receiving this email because of your account on salsa.debian.org.




[Git][xorg-team/app/piglit][debian-unstable] 33 commits: nv_copy_image-simple: Use red instead of green

2023-10-06 Thread Jordan Justen (@jljusten)


Jordan Justen pushed to branch debian-unstable at X Strike Force / app / piglit


Commits:
9a7ee8fb by Nanley Chery at 2023-08-09T18:32:29+00:00
nv_copy_image-simple: Use red instead of green

This demonstrates an issue with the iris driver. It does not account for
the automatic fast clearing behavior seen on TGL when copy operations
are performed.

Copying red onto dark red is enough to engage the automatic clearing
behavior because hardware is reinterpreting the floating point clear
values to the format chosen by BLORP (UINT), then seemingly clamping to
the 8bit-per-channel maximum of 255. So, the source value of 1.0 becomes
255 and the destination clear value of 0.5 becomes 255. Because the
pixels written match the destination clear value and the area is large
enough, some (if not all) get converted to fast cleared blocks.

Ref: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3732
Acked-by: Emma Anholt 
Acked-by: Rohan Garg 
Part-of: ;

- - - - -
3c0355f9 by Mike Blumenkrantz at 2023-08-11T13:03:36+00:00
ext_transform_feedback/api-errors: stop xfb before shutdown

this otherwise triggers api errors that prevent resources from being
freed

Acked-by: Dave Airlie 
Part-of: ;

- - - - -
11f10b26 by Italo Nicola at 2023-08-12T11:44:14+00:00
EGL_EXT_image_dma_buf_import: add NV21 format support

Signed-off-by: Italo Nicola 
Acked-by: Emma Anholt 
Part-of: ;

- - - - -
70b023c3 by Italo Nicola at 2023-08-12T11:44:14+00:00
EGL_EXT_image_dma_buf_import: add YVYU format support

Signed-off-by: Italo Nicola 
Acked-by: Emma Anholt 
Part-of: ;

- - - - -
480bcc28 by Italo Nicola at 2023-08-12T11:44:14+00:00
EGL_EXT_image_dma_buf_import: add VYUY format support

Signed-off-by: Italo Nicola 
Acked-by: Emma Anholt 
Part-of: ;

- - - - -
e8a1230c by Timothy Arceri at 2023-08-17T09:49:47+10:00
amd_gpu_shader_half_float: fix modf tests

i is an out parameter so we must pass an lvalue here.

Reviewed-by: Marek Olšák 
Part-of: ;

- - - - -
230253be by Tapani Pälli at 2023-08-17T09:57:02+03:00
ext_external_objects: cleanup, remove some global parameters

These were already set piglit_width, piglit_height, 1 everywhere,
just use those instead.

Signed-off-by: Tapani Pälli 
Part-of: ;

- - - - -
e8eb4129 by Tapani Pälli at 2023-08-17T10:25:47+03:00
ext_external_objects: simplification for check_bound_fbo_status

Signed-off-by: Tapani Pälli 
Part-of: ;

- - - - -
1334e618 by Vinson Lee at 2023-08-27T00:02:51+02:00
cmake: Add Python 3.12 to supported versions

Signed-off-by: Vinson Lee 
Part-of: ;

- - - - -
e18bb447 by David Heidelberg at 2023-09-01T00:54:25+02:00
ci: test with Python 3.11

Reviewed-by: Eric Engestrom 
Signed-off-by: David Heidelberg 
Part-of: ;

- - - - -
5594f9e0 by Gert Wollny at 2023-09-05T16:35:30+00:00
shaders@glsl-max-varyings: reduce size of pixels

With a pixel size of 2x2 size the drawing area is 1026x1026, added
to that window decorations, and possible offsets from the desktop
environment the window might not fit on the screen so that the desktop
manager might scale the window to fit the screen. Running the piglit
without the -fbo flag will then lead to reading back the output from
the wrong location.

Reduce the size of the pixels to 1x1 and drop the padding so that we end
up with a drawing area of 256x256, which is more likely to fit on the screen.

v2: Drop the padding (Emma)
v3: use one glReadPixels (Emma)

Signed-off-by: Gert Wollny 
Part-of: ;

- - - - -
f7db20b0 by Emma Anholt at 2023-09-05T16:50:37+00:00
arb_blend_func_extended: Don't print expected compile fails to stderr.

Cleans up deqp-runner output.

Part-of: ;

- - - - -
ac2e98d8 by Tapani Pälli at 2023-09-07T16:52:12+03:00
ext_render_snorm-render: test some negative values also

Signed-off-by: Tapani Pälli 
Part-of: ;

- - - - -

[Git][xorg-team/app/intel-gpu-tools] Pushed new tag intel-gpu-tools-1.28-1

2023-10-06 Thread Jordan Justen (@jljusten)


Jordan Justen pushed new tag intel-gpu-tools-1.28-1 at X Strike Force / app / 
intel-gpu-tools

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/app/intel-gpu-tools/-/tree/intel-gpu-tools-1.28-1
You're receiving this email because of your account on salsa.debian.org.




Processing of intel-gpu-tools_1.28-1_source.changes

2023-10-06 Thread Debian FTP Masters
intel-gpu-tools_1.28-1_source.changes uploaded successfully to localhost
along with the files:
  intel-gpu-tools_1.28-1.dsc
  intel-gpu-tools_1.28.orig.tar.xz
  intel-gpu-tools_1.28.orig.tar.xz.asc
  intel-gpu-tools_1.28-1.debian.tar.xz
  intel-gpu-tools_1.28-1_source.buildinfo

Greetings,

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



intel-gpu-tools_1.28-1_source.changes ACCEPTED into unstable

2023-10-06 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 06 Oct 2023 12:54:00 -0700
Source: intel-gpu-tools
Architecture: source
Version: 1.28-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Jordan Justen 
Changes:
 intel-gpu-tools (1.28-1) unstable; urgency=medium
 .
   * New upstream release.
   * d/signing-key: Add Kamil Konieczny's signing key
   * d/patches: Drop libproc2 patch that is now upstream
   * d/intel-gpu-tools.install: Add new v1.28 tools
   * d/control: Add python3 install dep for intel-gfx-fw-info
   * d/triggers: Fix lintian repeated-trigger-name ldconfig
   * d/control: Set Standards-Version to 4.6.2
   * d/control: Update email address for Jordan Justen
   * d/gbp.conf: Follow existing tag format
Checksums-Sha1:
 034f59872e44ceac3647acc9c494cf4d9bd83af0 2674 intel-gpu-tools_1.28-1.dsc
 adcebd54ff43d2bbdb17f0ac3476b7f9ca459470 2597284 
intel-gpu-tools_1.28.orig.tar.xz
 73ecc7cd208e7fc0c259aebb7cfcb7e88c3271e1 659 
intel-gpu-tools_1.28.orig.tar.xz.asc
 c7860192554948ff91304f17d02dd40845237635 12628 
intel-gpu-tools_1.28-1.debian.tar.xz
 bfb1201c3a354dc8f40b1c88f790d3e17b7195b5 9274 
intel-gpu-tools_1.28-1_source.buildinfo
Checksums-Sha256:
 6d19f822df4e0f34c822b0ef28ca0c7c3a0d6817326a3a630e572d1f709451b9 2674 
intel-gpu-tools_1.28-1.dsc
 ffcbdf61bd495803d9ae9dfa83e2fe04b8f583a2296fe059c1d5dd135a8a3b15 2597284 
intel-gpu-tools_1.28.orig.tar.xz
 0f2062d2c4c8cbbbea36c237a2f83da307095427db16b695dbe7d22a32b3543f 659 
intel-gpu-tools_1.28.orig.tar.xz.asc
 ebcd08422751e45f833083263a4b82268afe3e7146bdef628230e01253a4171e 12628 
intel-gpu-tools_1.28-1.debian.tar.xz
 7aab8f9fc04d2dc5bba2b69b41028e60cf9dbde7eac27b25da543d7ad18c81b5 9274 
intel-gpu-tools_1.28-1_source.buildinfo
Files:
 7e20bee0cdf58a8602379db3cfd63709 2674 x11 optional intel-gpu-tools_1.28-1.dsc
 5c11ed8a9698df5fd6663b027168ab1f 2597284 x11 optional 
intel-gpu-tools_1.28.orig.tar.xz
 1d6503ee19c399fb5ca744c9e699a126 659 x11 optional 
intel-gpu-tools_1.28.orig.tar.xz.asc
 10889fb047f524295f1efc73ece164a7 12628 x11 optional 
intel-gpu-tools_1.28-1.debian.tar.xz
 1848c8f9795f156aeccf1311365d07ed 9274 x11 optional 
intel-gpu-tools_1.28-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEwnSFIXQUyd8CMWwuN/mfaMr5kusFAmUgZjAACgkQN/mfaMr5
kuu0Cg//QsYMMIclO4u3zo7Tnlx4FRAGpJiFRel3TkVy9RkVa2/af95J5qqaZD/q
NQ9bUMSrc6rhSqj9smRI775L8birqbRIWrprUomTLfdXjUuAZFwoa/0SNL4mRofm
/baC4v/1Pc6E0EydB3Ro8wkNhdTbdSjLAZS4jvW5RlzUzHNDKf9jyRQR/1lC4tO6
Ssp2ntx7QFqjsZu9O/WmX+iCTOGmdV9oj4inJkroXr5QoAX3/zGVEDjFgMq+puqN
HKUJZAK+FqsCScyZtWFWjqtgeWlSDfVbhbcNuCIAEas84nVpb51hgFpr7hkTFMjg
y+e0/eyOReUomGo5khMEmuxz41A5/Th7GZySDNWdjTj++STHASzq92OfaMQSPBDL
ADsLWxuFuXL0Tg4ObVb06+jL79mGGzqRpNLWjUYnwjeigYP5GPbaZCk/znhq3TlA
bOoU+L0xmw7B0DmWAtIz3YedjDUwLZobjbLpfnD8ZRD+RdsKpv1NFuXSEmKff2bv
rc4YTOFxNE/Y5lYCxb08g2uQ04ncwuADMVtsQ2xIgfDCnjhibIKPzrd5xkvUC0SC
o0F8bsqdlwfnvGLT/jhO1H4DEwSbqmMuLQjjhGSjrrxT6/Ph8LfoApd8zIOnRliM
508XdFm5D7J4U6bOHYmgwe9jRJh0kYqVqwHcaU8qQw89R9DIr4c=
=YQos
-END PGP SIGNATURE-



[Git][xorg-team/lib/waffle] Pushed new tag debian/1.8.0-1

2023-10-06 Thread Jordan Justen (@jljusten)


Jordan Justen pushed new tag debian/1.8.0-1 at X Strike Force / lib / waffle

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




[Git][xorg-team/lib/waffle][debian-unstable] 103 commits: waffle: Bump post-release version to 1.7.90

2023-10-06 Thread Jordan Justen (@jljusten)


Jordan Justen pushed to branch debian-unstable at X Strike Force / lib / waffle


Commits:
ad08d7bd by Emil Velikov at 2021-03-07T20:52:31+00:00
waffle: Bump post-release version to 1.7.90

Signed-off-by: Emil Velikov 

- - - - -
8185f876 by Emil Velikov at 2021-03-07T22:01:59+00:00
doc: Add release notes for 1.7.0

Signed-off-by: Emil Velikov 

- - - - -
4eaba360 by Emil Velikov at 2021-03-07T22:22:22+00:00
release: Publish Waffle 1.7.0

Signed-off-by: Emil Velikov 

- - - - -
909c8086 by Emil Velikov at 2021-03-07T22:28:32+00:00
release: Fixup 1.7.0 URLs

Signed-off-by: Emil Velikov 

- - - - -
6c28e5f1 by Jose Fonseca at 2021-03-15T18:59:28+00:00
gitlab-ci: Build and package with MinGW cross-compilers.

This produces artifacts which can be consumed by downstream piglit
builds.

Further changes can be done to restrict this to specific branches, tags,
or even releases, as publishing artifacts on every build is likely
overkill.

Acked-by: Erik Faye-Lund 
Reviewed-by: Emil Velikov 

- - - - -
e2de20ca by Emil Velikov at 2021-07-12T18:45:13+01:00
wflinfo: doc: use space separator for longopts

Current implementation supports space separated short and long opts.
Additionally it handles space-less short opts and = long opts.

The latter two are less common and adding support for them in the shell
completion is cumbersome. So drop them from the --help and man pages.

The program still supports them so existing users will still work.

Signed-off-by: Emil Velikov 

- - - - -
b18866a9 by Emil Velikov at 2021-07-12T18:45:13+01:00
wflinfo: bash-completion: remove quirky handling

Currently wflinfo supports handling short opts, which are not space
separated. Additionally it also handles long-opt separated via =.

Neither of which is documented any more - latter was previously.

Just keep things simple and remove the extra quirky handling to those.
The program still supports them, so any users are unaffected.

Signed-off-by: Emil Velikov 

- - - - -
a2928750 by Emil Velikov at 2021-07-12T18:46:26+01:00
wflinfo: add zsh completion

Signed-off-by: Emil Velikov 

- - - - -
924a3b0b by Emil Velikov at 2021-07-13T15:06:28+01:00
gitlab-ci: use xvfb -noreset

Drop the gratuitous wait and use the -noreset Xvfb option. This should
resolve the intermittent fallouts that we're seeing.

Huge thanks goes to Pekka and Daniel for pointing it out.

Closes: https://gitlab.freedesktop.org/mesa/waffle/-/issues/70
Signed-off-by: Emil Velikov 

- - - - -
c68525ff by Emil Velikov at 2021-07-13T15:45:48+01:00
wayland: silence waffle 1.7 deprecation warnings

Keep the build clean by disabling the warnings locally. Using GCC-ism is
fine here, since the code is build only with GCC or Clang both of which
supporting it.

Signed-off-by: Emil Velikov 

- - - - -
7966597b by Emil Velikov at 2021-07-13T15:45:48+01:00
third_party/threads: initialize abs_time

Signed-off-by: Emil Velikov 

- - - - -
533d0a05 by Emil Velikov at 2021-07-13T15:45:48+01:00
tests/gl_basic_test: silence maybe-uninitialized warn

GCC insists that assert_true(0) can return, thus assuming that we can
end using a uninitialized variable.

Signed-off-by: Emil Velikov 

- - - - -
e4f87fb5 by Emil Velikov at 2021-07-13T15:45:48+01:00
waffle: consistently set WAFFLE_API_VERSION

Consistently set the define across the project. With that done, we can
enable -Werror=vla

Signed-off-by: Emil Velikov 

- - - - -
ebcd4fab by Emil Velikov at 2021-07-13T15:45:48+01:00
waffle: use same version API across programs

None of them uses the fancy new features, but hey at least we're
consistent across the project.

Signed-off-by: Emil Velikov 

- - - - -
e4c04db9 by Emil Velikov at 2021-07-13T15:45:48+01:00
core: use Wpointer-arith safe container_of

Copy Wpointer-arith safe implementation from mesa and toggle the
warning in the meson build.

Signed-off-by: Emil Velikov 

- - - - -
048809d5 by Emil Velikov at 2021-07-13T15:45:48+01:00
core/tests: correct function type

thrd_create() takes a `int (*)(void *)` callback, while currently we're
giving it a `bool (*)(struct thread_arg *)`

Flip the bool to an int.

Signed-off-by: Emil Velikov 

- - - - -
edaccebf by Emil Velikov at 2021-07-13T15:45:48+01:00
wflinfo: fixup sign-compare warnings

Signed-off-by: Emil Velikov 

- - - - -
949292dd by Emil Velikov at 2021-07-13T15:45:48+01:00
tests/gl_basic_test: silence implicit-fallthrough warn

The skip() function from cmocka is missing the noreturn notation. Thus
the compiler assumes that it can return and results in
implicit-fall

Bug#920523: Neverwinter Nights segfault

2023-10-06 Thread Antoine Le Gonidec

It took me a while to understand that, but the crash is actually due to a 
symbol conflict between the old game binaries and current libstdc++.so.6.

Patched binaries are available here: 
https://downloads.dotslashplay.it/games/neverwinter-nights-1/

And the explanation about how they have been patched:
"""
The original binaries nwmain and nwserver have a symbol conflict with modern 
libstdc++.so.6.
patchelf has been used to patch the binaries and rename the conflicting symbol 
(__dynamic_cast).

Big thanks to Phil Morrell, who used a similar method to patch Unreal 
Tournament libraries.
Without their work I would not have known how to fix this.
"""

I suggest closing this bug report, especially now that we know that this was 
not really related to libgl1-mesa-dri in the first place.


OpenPGP_signature.asc
Description: OpenPGP digital signature