Re: [Mesa-dev] [PATCH 01/13] glapi: add ARB_gpu_shader_fp64 (v2)

2015-02-04 Thread Matt Turner
On Wed, Feb 4, 2015 at 11:27 PM, Ilia Mirkin imir...@alum.mit.edu wrote: +void GLAPIENTRY +_mesa_UniformMatrix3dv(GLint location, GLsizei count, GLboolean transpose, + const GLdouble * value) Sloppy whitespace. Align it with the ( on the previous line. Also * goes with

[Mesa-dev] [PATCH 01/13] glapi: add ARB_gpu_shader_fp64 (v2)

2015-02-04 Thread Ilia Mirkin
From: Dave Airlie airl...@redhat.com Just add the xml file covering this extension, and dummy interface files in mesa, and fix up sanity tests. v2: Enable ProgramUniform*d* from ARB_separate_shader_objects (Ian) use 40 instead of 43 for dispatch_sanity.cpp (Chris) uncomment PU sanity tests.