Re: [Mesa-dev] [radeonsi] Re: glthread: upload non-VBO vertices and indices for non-Indirect non-IBM draws - BISECTED

2020-05-25 Thread Pierre-Eric Pelloux-Prayer
Hi Dieter, https://gitlab.freedesktop.org/mesa/mesa/-/issues/3001 may be the same bug. Pierre-Eric On 25/05/2020 07:35, Dieter Nützel wrote: > Hello Marek, > > this was time and nerve consuming (with all the LLVM 11 revert/re-revert). > FreeCAD vbo rendering bugs. > > Mes

Re: [Mesa-dev] Windows build broken

2020-03-24 Thread Pierre-Eric Pelloux-Prayer
Hi, Sorry about that. https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4303 should fix it. Thanks, Pierre-Eric On 24/03/2020 15:54, Brian Paul wrote: > by: > > commit f8f1413070ae079443ab31a75679cfd10cb756ed > Author: Pierre-Eric Pelloux-Prayer > Date:   Mon Mar 1

Re: [Mesa-dev] EXT_shader_image_load_store requires format-less loads?

2019-08-07 Thread Pelloux-prayer, Pierre-eric
Hi Ilia, Actually I wasn't sure that the PIPE_CAP_IMAGE_LOAD_FORMATTED was needed. Your reasonning and your patch series make sense, thanks for fixing this. Best, Pierre-Eric On 07/08/2019 02:10, Ilia Mirkin wrote: > Hi Pierre-Eric, > > I see you recently added EXT_shader_im

[Mesa-dev] [PATCH] Add support of glDrawElementsInstancedBaseVertex

2011-06-02 Thread Pierre-Eric Pelloux-Prayer
e has been submitted to piglist ML. Pierre-Eric From fbc38d2fe687a0a7a202b3fe93043fda72a16a7a Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Tue, 31 May 2011 13:33:54 +0200 Subject: [PATCH 1/2] mesa: add implementation of glDrawElementsInstancedBaseVertex --- src/mesa/main/api_

[Mesa-dev] [PATCH] bugfix : gl_program_parameter_list' StateFlags and _mesa_layout_parameters

2011-05-27 Thread Pierre-Eric Pelloux-Prayer
Hi, _mesa_layout_parameters builds a new gl_program_parameter from an existing one. The problem is that the StateFlags field is not properly kept, because parameters handled in "PASS1" are simply memcpy'ed. This simple patch fixes the issue. P

[Mesa-dev] [PATCH] state trackers and state changes propagation

2011-05-20 Thread Pierre-Eric Pelloux-Prayer
m 05/18 | +01 | +01->02 | +01->03 | +01->04 | | 74.6| 75.0 | 74.4 | 75.7| 74.7 | -- Pierre-Eric From fc58de87ddaf943942a81b0ec4deb8a0ce205534 Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Fri, 20 May 2011 22:52:43 +0200 Subject: [PATCH

Re: [Mesa-dev] [PATCH] add support for GL_RGBA + GL_UNSIGNED_INT_8_8_8_8 in st_fast_readpixels

2011-04-14 Thread Pierre-Eric Pelloux-Prayer
Updated patch as I was told that "an X component is supposed to result in 1.0". On Thu, Apr 14, 2011 at 5:10 PM, Pierre-Eric Pelloux-Prayer wrote: > Another similar patch proposal : handling of > PIPE_FORMAT_B8G8R8X8_UNORM format in st_fast_readpixels. > > If I'm cor

Re: [Mesa-dev] [PATCH] add support for GL_RGBA + GL_UNSIGNED_INT_8_8_8_8 in st_fast_readpixels

2011-04-14 Thread Pierre-Eric Pelloux-Prayer
8X8_UNORM. (Blender uses glReadPixels + PIPE_FORMAT_B8G8R8X8_UNORM when right mouse clicking in Edit-Mode) On Thu, Apr 14, 2011 at 3:52 PM, Brian Paul wrote: > On 04/13/2011 05:29 AM, Pierre-Eric wrote: >> >> As Lightsmark seems to make use of glReadPixels with {GL_RGBA + >> GL_

[Mesa-dev] [PATCH] add support for GL_RGBA + GL_UNSIGNED_INT_8_8_8_8 in st_fast_readpixels

2011-04-13 Thread Pierre-Eric
As Lightsmark seems to make use of glReadPixels with {GL_RGBA + GL_UNSIGNED_INT_8_8_8_8} parameters, I built a short patch to allow 'st_fast_readpixels' to handle this combination. It's been tested using piglit's pixelFormat test + a custom app. Best regards