blob: 29920afbf8bb35caa858754ce02ea2f9d14cbf91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $XFree86: xc/lib/GL/mesa/src/drv/ffb/ffb_points.h,v 1.1 2000/06/20 05:08:39 dawes Exp $ */
#ifndef _FFB_POINTS_H
#define _FFB_POINTS_H
extern void ffbDDPointfuncInit(void);
#define _FFB_NEW_POINT (_DD_NEW_POINT_SIZE | \
_DD_NEW_POINT_SMOOTH | \
_NEW_COLOR)
extern void ffbChoosePointState(GLcontext *);
extern void ffb_fallback_point( GLcontext *ctx, ffb_vertex *v0 );
#endif /* !(_FFB_POINTS_H) */
|