Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
<glx rop="99"/>
</function>
- <function name="PointSize" es1="1.0">
+ <function name="PointSize" es1="1.0" no_error="true">
<param name="size" type="GLfloat"/>
<glx rop="100"/>
</function>
void GLAPIENTRY
+_mesa_PointSize_no_error(GLfloat size)
+{
+ GET_CURRENT_CONTEXT(ctx);
+ point_size(ctx, size);
+}
+
+
+void GLAPIENTRY
_mesa_PointSize( GLfloat size )
{
GET_CURRENT_CONTEXT(ctx);
struct gl_context;
+void GLAPIENTRY
+_mesa_PointSize_no_error(GLfloat size);
+
extern void GLAPIENTRY
_mesa_PointSize( GLfloat size );