Re: [Mesa-dev] docs: consistent language

2021-03-16 Thread Emmanuel Gil Peyrot
pi.org/project/codespell/ -- Emmanuel Gil Peyrot signature.asc Description: PGP signature ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 10/10] egl/dri2: Add Wayland+EGL support for RGB10 winsys buffers.

2017-09-10 Thread Emmanuel Gil Peyrot
bit PNG with mpv), but otherwise your series seems to work properly! Thanks, -- Emmanuel Gil Peyrot signature.asc Description: PGP signature ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH shader-db 1/1] shaders: Add Dolphin’s übershaders

2017-08-17 Thread Emmanuel Gil Peyrot
On Thu, Aug 17, 2017 at 02:04:25PM +0100, Emil Velikov wrote: > Hi Emmanuel, Hi Emil, > > On 5 August 2017 at 04:35, Emmanuel Gil Peyrot wrote: > > These shaders have been generated by Dolphin 9649494f67 on Mesa > > 8c26b52349 for an HD4000 GPU. > > > > They

[Mesa-dev] [PATCH shader-db 1/1] shaders: Add Dolphin’s übershaders

2017-08-04 Thread Emmanuel Gil Peyrot
These shaders have been generated by Dolphin 9649494f67 on Mesa 8c26b52349 for an HD4000 GPU. They include a lot of uniform branches, mostly on integers, as well as switch statements branching on small and bounded integers. Signed-off-by: Emmanuel Gil Peyrot --- The actual patch isn’t included

Re: [Mesa-dev] Improving ralloc performance for the GLSL compiler

2016-08-31 Thread Emmanuel Gil Peyrot
though (code relocations would dirty text/code > memory mappings when library is loaded). jemalloc will always name its static library libjemalloc_pic.a when it is compiled with -fPIC, and libjemalloc.a when it isn’t. By default it compiles both, but distri

Re: [Mesa-dev] [PATCH] mesa: set _NEW_BUFFERS when updating texture bound to current buffers

2016-07-09 Thread Emmanuel Gil Peyrot
ded to check for completeness after every fbo change. Tested-by: Emmanuel Gil Peyrot > Cc: "11.2 12.0" > --- > src/mesa/main/teximage.c | 8 +++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c &

[Mesa-dev] [PATCH] gbm.h: Add a missing stddef.h include for size_t.

2015-10-29 Thread Emmanuel Gil Peyrot
This was causing compilation issues when one of its providers wasn’t already included before gbm.h. --- src/gbm/main/gbm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gbm/main/gbm.h b/src/gbm/main/gbm.h index 2708e50..8db2153 100644 --- a/src/gbm/main/gbm.h +++ b/src/gbm/main/gbm.h @@