This patch is Reviewed-by: Ian Romanick <ian.d.roman...@intel.com>
On 08/08/2018 07:12 PM, Marek Olšák wrote: > From: Marek Olšák <marek.ol...@amd.com> > > because the closed driver exposes it. > It's the same as the ARB extension. > --- > docs/relnotes/18.3.0.html | 1 + > .../glapi/gen/EXT_vertex_attrib_64bit.xml | 70 +++++++++++++++++++ > src/mapi/glapi/gen/gl_API.xml | 2 + > src/mesa/main/extensions_table.h | 1 + > 4 files changed, 74 insertions(+) > create mode 100644 src/mapi/glapi/gen/EXT_vertex_attrib_64bit.xml > > diff --git a/docs/relnotes/18.3.0.html b/docs/relnotes/18.3.0.html > index 8b067b55d3c..3d6081708b5 100644 > --- a/docs/relnotes/18.3.0.html > +++ b/docs/relnotes/18.3.0.html > @@ -49,20 +49,21 @@ TBD. > <p> > Note: some of the new features are only available with certain drivers. > </p> > > <ul> > <li>GL_AMD_framebuffer_multisample_advanced on radeonsi.</li> > <li>GL_AMD_gpu_shader_int64 on i965, nvc0, radeonsi.</li> > <li>GL_AMD_multi_draw_indirect on all GL 4.x drivers.</li> > <li>GL_AMD_query_buffer_object on i965, nvc0, r600, radeonsi.</li> > <li>GL_AMD_texture_texture4 on i965, nvc0, r600, radeonsi.</li> > +<li>GL_EXT_vertex_attrib_64bit on i965, nvc0, radeonsi.</li> > <li>GL_EXT_window_rectangles on radeonsi.</li> > </ul> > > <h2>Bug fixes</h2> > > <ul> > <li>TBD</li> > </ul> > > <h2>Changes</h2> > diff --git a/src/mapi/glapi/gen/EXT_vertex_attrib_64bit.xml > b/src/mapi/glapi/gen/EXT_vertex_attrib_64bit.xml > new file mode 100644 > index 00000000000..6b63b122fc1 > --- /dev/null > +++ b/src/mapi/glapi/gen/EXT_vertex_attrib_64bit.xml > @@ -0,0 +1,70 @@ > +<?xml version="1.0"?> > +<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd"> > + > +<OpenGLAPI> > + > +<category name="GL_EXT_vertex_attrib_64bit" number="387"> > + > + <function name="VertexAttribL1dEXT" alias="VertexAttribL1d"> > + <param name="index" type="GLuint"/> > + <param name="x" type="GLdouble"/> > + </function> > + > + <function name="VertexAttribL2dEXT" alias="VertexAttribL2d"> > + <param name="index" type="GLuint"/> > + <param name="x" type="GLdouble"/> > + <param name="y" type="GLdouble"/> > + </function> > + > + <function name="VertexAttribL3dEXT" alias="VertexAttribL3d"> > + <param name="index" type="GLuint"/> > + <param name="x" type="GLdouble"/> > + <param name="y" type="GLdouble"/> > + <param name="z" type="GLdouble"/> > + </function> > + > + <function name="VertexAttribL4dEXT" alias="VertexAttribL4d"> > + <param name="index" type="GLuint"/> > + <param name="x" type="GLdouble"/> > + <param name="y" type="GLdouble"/> > + <param name="z" type="GLdouble"/> > + <param name="w" type="GLdouble"/> > + </function> > + > + <function name="VertexAttribL1dvEXT" alias="VertexAttribL1dv"> > + <param name="index" type="GLuint"/> > + <param name="v" type="const GLdouble *"/> > + </function> > + > + <function name="VertexAttribL2dvEXT" alias="VertexAttribL2dv"> > + <param name="index" type="GLuint"/> > + <param name="v" type="const GLdouble *"/> > + </function> > + > + <function name="VertexAttribL3dvEXT" alias="VertexAttribL3dv"> > + <param name="index" type="GLuint"/> > + <param name="v" type="const GLdouble *"/> > + </function> > + > + <function name="VertexAttribL4dvEXT" alias="VertexAttribL4dv"> > + <param name="index" type="GLuint"/> > + <param name="v" type="const GLdouble *"/> > + </function> > + > + <function name="VertexAttribLPointerEXT" alias="VertexAttribLPointer"> > + <param name="index" type="GLuint"/> > + <param name="size" type="GLint"/> > + <param name="type" type="GLenum"/> > + <param name="stride" type="GLsizei"/> > + <param name="pointer" type="const GLvoid *"/> > + </function> > + > + <function name="GetVertexAttribLdvEXT" alias="GetVertexAttribLdv"> > + <param name="index" type="GLuint"/> > + <param name="pname" type="GLenum"/> > + <param name="params" type="GLdouble *"/> > + </function> > +</category> > + > +</OpenGLAPI> > + > diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml > index a45fdc5ed98..41454b212df 100644 > --- a/src/mapi/glapi/gen/gl_API.xml > +++ b/src/mapi/glapi/gen/gl_API.xml > @@ -12932,20 +12932,22 @@ > <function name="GetTexParameterPointervAPPLE" exec="skip"> > <param name="target" type="GLenum"/> > <param name="pname" type="GLenum"/> > <param name="params" type="GLvoid **"/> > </function> > </category> > > <xi:include href="EXT_separate_shader_objects.xml" > xmlns:xi="http://www.w3.org/2001/XInclude"/> > > +<xi:include href="EXT_vertex_attrib_64bit.xml" > xmlns:xi="http://www.w3.org/2001/XInclude"/> > + > <category name="GL_EXT_texture_sRGB_decode" number="402"> > <enum name="TEXTURE_SRGB_DECODE_EXT" value="0x8A48"/> > <enum name="DECODE_EXT" value="0x8A49"/> > <enum name="SKIP_DECODE_EXT" value="0x8A4A"/> > </category> > > <category name="GL_AMD_pinned_memory" number="411"> > <enum name="EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD" value="0x9160"/> > </category> > > diff --git a/src/mesa/main/extensions_table.h > b/src/mesa/main/extensions_table.h > index 629a42f64e0..de1e796bc5d 100644 > --- a/src/mesa/main/extensions_table.h > +++ b/src/mesa/main/extensions_table.h > @@ -297,20 +297,21 @@ EXT(EXT_texture_sRGB , > EXT_texture_sRGB > EXT(EXT_texture_sRGB_decode , EXT_texture_sRGB_decode > , GLL, GLC, x , 30, 2006) > EXT(EXT_texture_shared_exponent , EXT_texture_shared_exponent > , GLL, GLC, x , x , 2004) > EXT(EXT_texture_snorm , EXT_texture_snorm > , GLL, GLC, x , x , 2009) > EXT(EXT_texture_swizzle , EXT_texture_swizzle > , GLL, GLC, x , x , 2008) > EXT(EXT_texture_type_2_10_10_10_REV , > EXT_texture_type_2_10_10_10_REV , x , x , x , ES2, 2008) > EXT(EXT_timer_query , EXT_timer_query > , GLL, GLC, x , x , 2006) > EXT(EXT_transform_feedback , EXT_transform_feedback > , GLL, GLC, x , x , 2011) > EXT(EXT_unpack_subimage , dummy_true > , x , x , x , ES2, 2011) > EXT(EXT_vertex_array , dummy_true > , GLL, x , x , x , 1995) > EXT(EXT_vertex_array_bgra , EXT_vertex_array_bgra > , GLL, GLC, x , x , 2008) > +EXT(EXT_vertex_attrib_64bit , ARB_vertex_attrib_64bit > , 32, GLC, x , x , 2010) > EXT(EXT_window_rectangles , EXT_window_rectangles > , GLL, GLC, x , 30, 2016) > > EXT(GREMEDY_string_marker , GREMEDY_string_marker > , GLL, GLC, x , x , 2007) > > EXT(IBM_multimode_draw_arrays , dummy_true > , GLL, GLC, x , x , 1998) > EXT(IBM_rasterpos_clip , dummy_true > , GLL, x , x , x , 1996) > EXT(IBM_texture_mirrored_repeat , dummy_true > , GLL, x , x , x , 1998) > > EXT(INGR_blend_func_separate , EXT_blend_func_separate > , GLL, x , x , x , 1999) > > _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev