blob: d508c243ea294f36672898cb5ddc5eee3c253810 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | /* $XFree86: xc/lib/GL/mesa/src/drv/ffb/ffb_lines.h,v 1.2 2002/02/22 21:32:58 dawes Exp $ */
#ifndef _FFB_LINES_H
#define _FFB_LINES_H
#include "ffb_context.h"
#define _FFB_NEW_LINE (_DD_NEW_FLATSHADE |	\
		       _DD_NEW_LINE_WIDTH |	\
		       _DD_NEW_LINE_STIPPLE |	\
		       _DD_NEW_LINE_SMOOTH |	\
		       _NEW_COLOR)
extern void ffbDDLinefuncInit(void);
extern void ffbChooseLineState(GLcontext *);
extern void ffb_fallback_line( GLcontext *ctx, ffb_vertex *v0, ffb_vertex *v1 );
#endif /* !(_FFB_LINES_H) */
 |