1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* $XFree86$ */
/**************************************************************************
Copyright 1999, 2000 ATI Technologies Inc. and Precision Insight, Inc.,
Cedar Park, Texas.
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
on the rights to use, copy, modify, merge, publish, distribute, sub
license, 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 (including the next
paragraph) 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 NON-INFRINGEMENT. IN NO EVENT SHALL
ATI, PRECISION INSIGHT AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
**************************************************************************/
/*
* Authors:
* Kevin E. Martin <kevin@precisioninsight.com>
*
*/
#ifndef _R128_TRIS_H_
#define _R128_TRIS_H_
#ifdef GLX_DIRECT_RENDERING
#include "r128_vb.h"
#define R128_ANTIALIAS_BIT 0x00 /* ignored for now, no fallback */
#define R128_FLAT_BIT 0x01
#define R128_OFFSET_BIT 0x02
#define R128_TWOSIDE_BIT 0x04
#define R128_NODRAW_BIT 0x08
#define R128_FALLBACK_BIT 0x10
#define R128_FEEDBACK_BIT 0x20
#define R128_SELECT_BIT 0x40
#define R128_POINT_PARAM_BIT 0x80 /* not needed? */
extern void r128DrawTriangleVB(r128ContextPtr r128ctx,
r128_vertex *v0,
r128_vertex *v1,
r128_vertex *v2);
extern void r128DrawLineVB(r128ContextPtr r128ctx,
r128_vertex *tmp0, r128_vertex *tmp1,
float width);
extern void r128DrawPointVB(r128ContextPtr r128ctx,
r128_vertex *tmp, float size);
extern void r128DrawTriangle(r128ContextPtr r128ctx,
r128_vertex *v0,
r128_vertex *v1,
r128_vertex *v2);
extern void r128DrawLine(r128ContextPtr r128ctx,
r128_vertex *tmp0, r128_vertex *tmp1,
float width);
extern void r128DrawPoint(r128ContextPtr r128ctx,
r128_vertex *tmp, float size);
extern void r128ChooseRenderState(GLcontext *ctx);
extern void r128TriangleFuncsInit(void);
#endif
#endif /* _R128_TRIS_H_ */
|