r300: half float support
[mesa.git] / src / mesa / drivers / dri / i810 / i810render.c
1 /*
2 * Intel i810 DRI driver for Mesa 3.5
3 *
4 * Copyright (C) 1999-2000 Keith Whitwell All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL KEITH WHITWELL BE LIABLE FOR
20 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
21 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Author:
25 * Keith Whitwell <keith@tungstengraphics.com>
26 */
27
28
29 /*
30 * Render unclipped vertex buffers by emitting vertices directly to
31 * dma buffers. Use strip/fan hardware acceleration where possible.
32 *
33 */
34 #include "main/glheader.h"
35 #include "main/context.h"
36 #include "main/macros.h"
37 #include "main/imports.h"
38 #include "main/mtypes.h"
39
40 #include "tnl/t_context.h"
41
42 #include "i810screen.h"
43 #include "i810_dri.h"
44
45 #include "i810context.h"
46 #include "i810tris.h"
47 #include "i810state.h"
48 #include "i810vb.h"
49 #include "i810ioctl.h"
50
51 /*
52 * Render unclipped vertex buffers by emitting vertices directly to
53 * dma buffers. Use strip/fan hardware primitives where possible.
54 * Try to simulate missing primitives with indexed vertices.
55 */
56 #define HAVE_POINTS 0
57 #define HAVE_LINES 1
58 #define HAVE_LINE_STRIPS 1
59 #define HAVE_TRIANGLES 1
60 #define HAVE_TRI_STRIPS 1
61 #define HAVE_TRI_STRIP_1 0 /* has it, template can't use it yet */
62 #define HAVE_TRI_FANS 1
63 #define HAVE_POLYGONS 1
64 #define HAVE_QUADS 0
65 #define HAVE_QUAD_STRIPS 0
66
67 #define HAVE_ELTS 0
68
69
70 static GLuint hw_prim[GL_POLYGON+1] = {
71 0,
72 PR_LINES,
73 0,
74 PR_LINESTRIP,
75 PR_TRIANGLES,
76 PR_TRISTRIP_0,
77 PR_TRIFAN,
78 0,
79 0,
80 PR_POLYGON
81 };
82
83 static const GLenum reduced_prim[GL_POLYGON+1] = {
84 GL_POINTS,
85 GL_LINES,
86 GL_LINES,
87 GL_LINES,
88 GL_TRIANGLES,
89 GL_TRIANGLES,
90 GL_TRIANGLES,
91 GL_TRIANGLES,
92 GL_TRIANGLES,
93 GL_TRIANGLES
94 };
95
96
97
98
99 #define LOCAL_VARS i810ContextPtr imesa = I810_CONTEXT(ctx)
100 #define INIT( prim ) do { \
101 I810_STATECHANGE(imesa, 0); \
102 i810RasterPrimitive( ctx, reduced_prim[prim], hw_prim[prim] ); \
103 } while (0)
104 #define GET_CURRENT_VB_MAX_VERTS() \
105 (((int)imesa->vertex_high - (int)imesa->vertex_low) / (imesa->vertex_size*4))
106 #define GET_SUBSEQUENT_VB_MAX_VERTS() \
107 (I810_DMA_BUF_SZ-4) / (imesa->vertex_size * 4)
108
109 #define ALLOC_VERTS( nr ) \
110 i810AllocDmaLow( imesa, (nr) * imesa->vertex_size * 4)
111 #define EMIT_VERTS( ctx, j, nr, buf ) \
112 i810_emit_contiguous_verts(ctx, j, (j)+(nr), buf)
113
114 #define FLUSH() I810_FIREVERTICES( imesa )
115
116
117 #define TAG(x) i810_##x
118 #include "tnl_dd/t_dd_dmatmp.h"
119
120
121 /**********************************************************************/
122 /* Render pipeline stage */
123 /**********************************************************************/
124
125
126 static GLboolean i810_run_render( GLcontext *ctx,
127 struct tnl_pipeline_stage *stage )
128 {
129 i810ContextPtr imesa = I810_CONTEXT(ctx);
130 TNLcontext *tnl = TNL_CONTEXT(ctx);
131 struct vertex_buffer *VB = &tnl->vb;
132 GLuint i;
133
134 /* Don't handle clipping or indexed vertices.
135 */
136 if (imesa->RenderIndex != 0 ||
137 !i810_validate_render( ctx, VB )) {
138 return GL_TRUE;
139 }
140
141 imesa->SetupNewInputs = VERT_BIT_POS;
142
143 tnl->Driver.Render.Start( ctx );
144
145 for (i = 0 ; i < VB->PrimitiveCount ; i++)
146 {
147 GLuint prim = _tnl_translate_prim(&VB->Primitive[i]);
148 GLuint start = VB->Primitive[i].start;
149 GLuint length = VB->Primitive[i].count;
150
151 if (!length)
152 continue;
153
154 i810_render_tab_verts[prim & PRIM_MODE_MASK]( ctx, start, start + length,
155 prim );
156 }
157
158 tnl->Driver.Render.Finish( ctx );
159
160 return GL_FALSE; /* finished the pipe */
161 }
162
163
164
165 const struct tnl_pipeline_stage _i810_render_stage =
166 {
167 "i810 render",
168 NULL,
169 NULL,
170 NULL,
171 NULL,
172 i810_run_render /* run */
173 };