Re: [Mesa-dev] [PATCH 12/13] st/mesa: enable ARB_enhanced_layouts and turn the cap on

2016-10-07 Thread Jason Wood
Thanks for finishing this off Nicolai! I have one quick question about this patch below. On 10/07/2016 01:55 PM, Nicolai Hähnle wrote: > From: Nicolai Hähnle > > --- > docs/features.txt| 16 > docs/relnotes/12.1.0.html| 2 +- > src/gal

Re: [Mesa-dev] [PATCHv4 2/3] glx_pbuffer: Refactor GetDrawableAttribute

2014-02-26 Thread Jason Wood
On 02/26/2014 06:55 PM, Ian Romanick wrote: > On 02/26/2014 05:22 PM, Jason Wood wrote: >> On 02/26/2014 04:27 PM, Adel Gadllah wrote: >>> Move the pdraw != NULL check out so that they don't >>> have to be duplicated. >>> >>> Signed-o

Re: [Mesa-dev] [PATCHv4 2/3] glx_pbuffer: Refactor GetDrawableAttribute

2014-02-26 Thread Jason Wood
On 02/26/2014 04:27 PM, Adel Gadllah wrote: > Move the pdraw != NULL check out so that they don't > have to be duplicated. > > Signed-off-by: Adel Gadllah > Reviewed-by: Ian Romanick > --- > src/glx/glx_pbuffer.c | 11 ++- > 1 file changed, 6 insertions(+), 5 deletions(-) > > diff --git

[Mesa-dev] [PATCH] docs: Mark some features in GL3.txt as done for r600

2012-11-28 Thread Jason Wood
From: Jason Wood These extensions are advertised as available on r600 hardware. If this patch is accepted, please feel free to commit this for me as I do not have access. - Jason Wood --- a/docs/GL3.txt 2012-11-28 14:13:06.654726848 -0700 +++ b/docs/GL3.txt 2012-11-28 14:16:18.671718865 -0700

Re: [Mesa-dev] [PATCH 1/5] intel: Add a macro for printing a debug warning once.

2012-10-15 Thread Jason Wood
own question! Anyway, my concern re the patch submitted by Eric still stands in my mind. Jason Wood -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iQEcBAEBAgAGBQJQfIlyAAoJEKeoMFRQQB/owJ0H/3GqzwdjZV9tlgu4fp7ceFqU BqZ+/

Re: [Mesa-dev] [PATCH 1/5] intel: Add a macro for printing a debug warning once.

2012-10-15 Thread Jason Wood
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/15/2012 10:41 AM, Eric Anholt wrote: > Jason Wood writes: > >> -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 >> >> On 10/12/2012 04:30 PM, Eric Anholt wrote: >>> There are a number of places where some obs

Re: [Mesa-dev] [PATCH 1/5] intel: Add a macro for printing a debug warning once.

2012-10-15 Thread Jason Wood
in the previous line. I assume this is not the behavior that you were after. Cheers, Jason Wood > + fprintf(stderr, "WARNING: "); \ > +

[Mesa-dev] [PATCH v2] docs: Add OpenGL 4.3 requirements

2012-08-06 Thread Jason Wood
Add OpenGL 4.3 requirements. v2: Note that GLSL 4.3 has not been started, and that ARB_compute_shader has been started in Gallium drivers. Feel free to commit this as I do not have access. Signed-off-by: Jason Wood --- a/docs/GL3.txt 2012-08-06 10:49:10.185597917 -0600 +++ b/docs/GL3.txt

[Mesa-dev] [PATCH] Docs: Add OpenGL 4.3 requirements

2012-08-06 Thread Jason Wood
Add OpenGL 4.3 requirements. Signed-off-by: Jason Wood --- a/docs/GL3.txt 2012-08-06 10:49:10.185597917 -0600 +++ b/docs/GL3.txt 2012-08-06 10:48:45.809477043 -0600 @@ -130,5 +130,35 @@ GL_ARB_map_buffer_alignment not started +GL 4.3: + +GLSL 4.3

Re: [Mesa-dev] [PATCH] mesa: Bump version to 8.0 (devel)

2012-01-09 Thread Jason Wood
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/06/2012 05:54 PM, Kenneth Graunke wrote: > --- Makefile|2 +- configs/default | > 4 +- docs/relnotes-7.12.html | 83 > --- > docs/relnotes-8.0.html | 83 > +++

Re: [Mesa-dev] [PATCH] Fix _GNUC__ typo in check for gcc 3.x for _mesa_bitcount

2011-10-20 Thread Jason Wood
On 10/20/2011 06:58 PM, Alan Coopersmith wrote: Without this fix, builds with gcc 3.4.x end up depending on undefined _mesa_bitcount instead of gcc's __builtin_popcount. NOTE: This is a candidate for the stable branches. Signed-off-by: Alan Coopersmith --- src/mesa/main/imports.c |2 +-

[Mesa-dev] [PATCH] glsl: Remove version check when looking for identifiers containing "__"

2011-10-06 Thread Jason Wood
Match the comments regarding identifiers containing "__" being reserved in GLSL 1.10 From: Jason Wood --- b/src/glsl/ast_to_hir.cpp2011-10-06 12:03:01.378402382 -0600 +++ a/src/glsl/ast_to_hir.cpp2011-10-06 12:05:21.338400674 -0600 @@ -2803,8 +2803,7 @@ _mesa_glsl_e