X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fpoints.h;h=156641eab914f9e4376c9e4b7b56e1ec25e281e2;hb=08d90fe8a5e12d92994c05b2ec9f68ab7232275c;hp=b024ffbdf85c019c8d502d673f9d34d940db37f9;hpb=fbd8f212c3866ec98c1d8c9d3db3ddb7e7c479a5;p=mesa.git diff --git a/src/mesa/main/points.h b/src/mesa/main/points.h index b024ffbdf85..156641eab91 100644 --- a/src/mesa/main/points.h +++ b/src/mesa/main/points.h @@ -1,21 +1,24 @@ -/* $Id: points.h,v 1.2 1999/11/11 01:22:27 brianp Exp $ */ +/** + * \file points.h + * Point operations. + */ /* * Mesa 3-D graphics library - * Version: 3.3 - * - * Copyright (C) 1999 Brian Paul All Rights Reserved. - * + * Version: 6.5 + * + * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. + * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: - * + * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. - * + * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL @@ -25,29 +28,30 @@ */ - - - #ifndef POINTS_H #define POINTS_H -#include "types.h" +#include "mtypes.h" -extern void +extern void GLAPIENTRY _mesa_PointSize( GLfloat size ); +extern void GLAPIENTRY +_mesa_PointParameteri( GLenum pname, GLint param ); -extern void -_mesa_PointParameterfEXT( GLenum pname, GLfloat param); - +extern void GLAPIENTRY +_mesa_PointParameteriv( GLenum pname, const GLint *params ); -extern void -_mesa_PointParameterfvEXT( GLenum pname, const GLfloat *params ); +extern void GLAPIENTRY +_mesa_PointParameterf( GLenum pname, GLfloat param ); +extern void GLAPIENTRY +_mesa_PointParameterfv( GLenum pname, const GLfloat *params ); -extern void gl_set_point_function( GLcontext *ctx ); +extern void +_mesa_init_point( GLcontext * ctx ); #endif