Re: [Mesa-dev] [PATCH] mesa: move GL_ARB_debug_output code into new debug_output.c file

2016-02-08 Thread Brian Paul
On 02/05/2016 06:28 PM, Timothy Arceri wrote: On Fri, 2016-02-05 at 17:54 -0700, Brian Paul wrote: The errors.c file had grown quite large so split off this extension code into its own file. This involved making a handful of functions non-static. I was going to do this when I added KHR_debug

[Mesa-dev] [PATCH] mesa: move GL_ARB_debug_output code into new debug_output.c file

2016-02-05 Thread Brian Paul
The errors.c file had grown quite large so split off this extension code into its own file. This involved making a handful of functions non-static. --- src/compiler/glsl/glsl_parser_extras.cpp |1 + src/mapi/glapi/gen/gl_genexec.py |1 + src/mesa/Makefile.sources|

Re: [Mesa-dev] [PATCH] mesa: move GL_ARB_debug_output code into new debug_output.c file

2016-02-05 Thread Timothy Arceri
On Fri, 2016-02-05 at 17:54 -0700, Brian Paul wrote: > The errors.c file had grown quite large so split off this extension > code into its own file.  This involved making a handful of functions > non-static. I was going to do this when I added KHR_debug but was too new at the time and didn't want