search for: emersion

Displaying 10 results from an estimated 10 matches for "emersion".

Did you mean: emerion
2019 Jan 12
7
[Bug 109330] New: GL_ALPHA_BITS set to non-zero with EGL_PLATFORM_GBM_MESA
...Product: Mesa Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at lists.freedesktop.org Reporter: contact at emersion.fr QA Contact: nouveau at lists.freedesktop.org When creating an EGL context with EGL_PLATFORM_GBM_MESA and EGL_ALPHA_SIZE=1, Nouveau produces completely transparent images when using glReadPixels. Note that my code works with other drivers (i915, amdgpu), only Nouveau is affected. How to...
2020 Mar 03
3
[PATCH] lib-imap: imap-bodystructure: add test with empty header field
This causes the body structure to be incorrect. The RFC says it's fine o have empty header field values. --- This just adds a failing test, inspired from an e-mail spotted in the wild. Ideas welcome to fix it. src/lib-imap/test-imap-bodystructure.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/lib-imap/test-imap-bodystructure.c
2023 Jun 20
1
[PATCH] drm/nouveau/disp: use drm_kms_helper_connector_hotplug_event()
This adds more information to the hotplug uevent and lets user-space know that it's about a particular connector only. Signed-off-by: Simon Ser <contact at emersion.fr> Cc: Ben Skeggs <bskeggs at redhat.com> Cc: Lyude Paul <lyude at redhat.com> Cc: David Airlie <airlied at linux.ie> Cc: Karol Herbst <kherbst at redhat.com> --- drivers/gpu/drm/nouveau/nouveau_display.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 delet...
2020 Mar 28
0
[klibc:update-dash] dash: parser: Do not push token back before parseheredoc
...;rmy at frippery.org> Fixes: 7c245aa8ed33 ("[PARSER] Simplify EOF/newline handling in...") Fixes: ee5cbe9fd6bc ("[SHELL] Optimize dash -c "command" to avoid a fork") Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au> Tested-by: Simon Ser <contact at emersion.fr> Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- usr/dash/parser.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/usr/dash/parser.c b/usr/dash/parser.c index c4e63781..1f9e8ec0 100644 --- a/usr/dash/parser.c +++ b/usr/dash/parser.c @@ -166,7 +166,7 @...
2020 Mar 03
0
[PATCH] lib-imap: imap-bodystructure: add test with empty header field
On 3. Mar 2020, at 20.38, Simon Ser <contact at emersion.fr> wrote: > > This causes the body structure to be incorrect. The RFC says it's fine o > have empty header field values. The problem isn't empty header field. It's that the mail is missing Mime-Version header. If that doesn't exist, then the Content-* headers can be i...
2018 Aug 07
0
[ANNOUNCE] xorg-server 1.20.1
...en byte-swaps for Valuator fields Stefan Agner (1): modesetting: Fix 16 bit depth/bpp mode Takashi Iwai (1): modesetting: Fix cirrus 24bpp breakage Thomas Hellstrom (1): glamor: Work around GEM usage v2 Vladimir Panteleev (1): glx/vndcmds: Fix vendor hash table key size emersion (1): xwayland: rotate logical size for RRMode git tag: xorg-server-1.20.1 https://xorg.freedesktop.org/archive/individual/xserver/xorg-server-1.20.1.tar.bz2 MD5: e525846d1d0af5732ba835f2e2ec066d xorg-server-1.20.1.tar.bz2 SHA1: fd43367c2b7bbb1a4b1dd90b06a021e68a9db240 xorg-server-1.20.1....
2023 Oct 20
0
[ANNOUNCE] libdrm 2.4.117
Chia-I Wu (1): modetest: print modifiers in hex as well Dmitry Baryshkov (1): modetest: custom mode support Dylan Baker (3): meson: fix intel requirements meson: Use feature.require() and feature.allowed() meson: replace deprecated program.path -> program.full_path Ezequiel Garcia (1): modetest: avoid erroring if there's no gamma legacy support Geert
2023 Nov 20
0
[ANNOUNCE] libdrm 2.4.118
David Jagu (1): meson: fix typo in libdrm_intel Geert Uytterhoeven (18): util: improve SMPTE color LUT accuracy util: factor out and optimize C8 SMPTE color LUT util: add support for DRM_FORMAT_C[124] util: store number of colors for indexed formats util: add SMPTE pattern support for C4 format util: add SMPTE pattern support for C1 format util: add
2024 Jan 13
0
[ANNOUNCE] libdrm 2.4.120
Eric Engestrom (1): radeon: fix missing stencil_tile_mode initialisation in the linear/fallback case Pierre-Eric Pelloux-Prayer (1): amdgpu: fix use-after-free Simon Ser (2): Sync headers with drm-next build: bump version to 2.4.120 git tag: libdrm-2.4.120 https://dri.freedesktop.org/libdrm/libdrm-2.4.120.tar.xz SHA256:
2023 Jun 21
1
[PATCH] drm/nouveau/disp: use drm_kms_helper_connector_hotplug_event()
Hi Lyude! On Wednesday, June 21st, 2023 at 23:56, Lyude Paul <lyude at redhat.com> wrote: > > - if (changed) > > + if (changed == 1) > > + drm_kms_helper_connector_hotplug_event(first_changed_connector); > > + else if (changed > 0) > > drm_kms_helper_hotplug_event(dev); > > I'm curious if you think there might be an advantage to doing this