Merge branch 'mesa_7_6_branch'
[mesa.git] / src / mesa / main / vtxfmt.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.3
4 *
5 * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Keith Whitwell <keith@tungstengraphics.com>
26 * Gareth Hughes
27 */
28
29 #include "glheader.h"
30 #include "api_arrayelt.h"
31 #include "api_loopback.h"
32 #include "context.h"
33 #include "imports.h"
34 #include "mtypes.h"
35 #include "state.h"
36 #include "vtxfmt.h"
37 #include "eval.h"
38 #include "dlist.h"
39
40
41 #if FEATURE_beginend
42
43
44 /* The neutral vertex format. This wraps all tnl module functions,
45 * verifying that the currently-installed module is valid and then
46 * installing the function pointers in a lazy fashion. It records the
47 * function pointers that have been swapped out, which allows a fast
48 * restoration of the neutral module in almost all cases -- a typical
49 * app might only require 4-6 functions to be modified from the neutral
50 * baseline, and only restoring these is certainly preferable to doing
51 * the entire module's 60 or so function pointers.
52 */
53
54 #define PRE_LOOPBACK( FUNC ) \
55 { \
56 GET_CURRENT_CONTEXT(ctx); \
57 struct gl_tnl_module * const tnl = &(ctx->TnlModule); \
58 const int tmp_offset = _gloffset_ ## FUNC ; \
59 \
60 ASSERT( tnl->Current ); \
61 ASSERT( tnl->SwapCount < NUM_VERTEX_FORMAT_ENTRIES ); \
62 ASSERT( tmp_offset >= 0 ); \
63 \
64 if (tnl->SwapCount == 0) \
65 ctx->Driver.BeginVertices( ctx ); \
66 \
67 /* Save the swapped function's dispatch entry so it can be */ \
68 /* restored later. */ \
69 tnl->Swapped[tnl->SwapCount].location = & (((_glapi_proc *)ctx->Exec)[tmp_offset]); \
70 tnl->Swapped[tnl->SwapCount].function = (_glapi_proc)TAG(FUNC); \
71 tnl->SwapCount++; \
72 \
73 if ( 0 ) \
74 _mesa_debug(ctx, " swapping gl" #FUNC"...\n" ); \
75 \
76 /* Install the tnl function pointer. */ \
77 SET_ ## FUNC(ctx->Exec, tnl->Current->FUNC); \
78 }
79
80 #define TAG(x) neutral_##x
81 #include "vtxfmt_tmp.h"
82
83
84 /**
85 * Use the per-vertex functions found in <vfmt> to initialze the given
86 * API dispatch table.
87 */
88 static void
89 install_vtxfmt( struct _glapi_table *tab, const GLvertexformat *vfmt )
90 {
91 _mesa_install_arrayelt_vtxfmt(tab, vfmt);
92
93 SET_Color3f(tab, vfmt->Color3f);
94 SET_Color3fv(tab, vfmt->Color3fv);
95 SET_Color4f(tab, vfmt->Color4f);
96 SET_Color4fv(tab, vfmt->Color4fv);
97 SET_EdgeFlag(tab, vfmt->EdgeFlag);
98
99 _mesa_install_eval_vtxfmt(tab, vfmt);
100
101 SET_FogCoordfEXT(tab, vfmt->FogCoordfEXT);
102 SET_FogCoordfvEXT(tab, vfmt->FogCoordfvEXT);
103 SET_Indexf(tab, vfmt->Indexf);
104 SET_Indexfv(tab, vfmt->Indexfv);
105 SET_Materialfv(tab, vfmt->Materialfv);
106 SET_MultiTexCoord1fARB(tab, vfmt->MultiTexCoord1fARB);
107 SET_MultiTexCoord1fvARB(tab, vfmt->MultiTexCoord1fvARB);
108 SET_MultiTexCoord2fARB(tab, vfmt->MultiTexCoord2fARB);
109 SET_MultiTexCoord2fvARB(tab, vfmt->MultiTexCoord2fvARB);
110 SET_MultiTexCoord3fARB(tab, vfmt->MultiTexCoord3fARB);
111 SET_MultiTexCoord3fvARB(tab, vfmt->MultiTexCoord3fvARB);
112 SET_MultiTexCoord4fARB(tab, vfmt->MultiTexCoord4fARB);
113 SET_MultiTexCoord4fvARB(tab, vfmt->MultiTexCoord4fvARB);
114 SET_Normal3f(tab, vfmt->Normal3f);
115 SET_Normal3fv(tab, vfmt->Normal3fv);
116 SET_SecondaryColor3fEXT(tab, vfmt->SecondaryColor3fEXT);
117 SET_SecondaryColor3fvEXT(tab, vfmt->SecondaryColor3fvEXT);
118 SET_TexCoord1f(tab, vfmt->TexCoord1f);
119 SET_TexCoord1fv(tab, vfmt->TexCoord1fv);
120 SET_TexCoord2f(tab, vfmt->TexCoord2f);
121 SET_TexCoord2fv(tab, vfmt->TexCoord2fv);
122 SET_TexCoord3f(tab, vfmt->TexCoord3f);
123 SET_TexCoord3fv(tab, vfmt->TexCoord3fv);
124 SET_TexCoord4f(tab, vfmt->TexCoord4f);
125 SET_TexCoord4fv(tab, vfmt->TexCoord4fv);
126 SET_Vertex2f(tab, vfmt->Vertex2f);
127 SET_Vertex2fv(tab, vfmt->Vertex2fv);
128 SET_Vertex3f(tab, vfmt->Vertex3f);
129 SET_Vertex3fv(tab, vfmt->Vertex3fv);
130 SET_Vertex4f(tab, vfmt->Vertex4f);
131 SET_Vertex4fv(tab, vfmt->Vertex4fv);
132
133 _mesa_install_dlist_vtxfmt(tab, vfmt);
134
135 SET_Begin(tab, vfmt->Begin);
136 SET_End(tab, vfmt->End);
137 SET_Rectf(tab, vfmt->Rectf);
138 SET_DrawArrays(tab, vfmt->DrawArrays);
139 SET_DrawElements(tab, vfmt->DrawElements);
140 SET_DrawRangeElements(tab, vfmt->DrawRangeElements);
141 SET_MultiDrawElementsEXT(tab, vfmt->MultiDrawElementsEXT);
142 SET_DrawElementsBaseVertex(tab, vfmt->DrawElementsBaseVertex);
143 SET_DrawRangeElementsBaseVertex(tab, vfmt->DrawRangeElementsBaseVertex);
144 SET_MultiDrawElementsBaseVertex(tab, vfmt->MultiDrawElementsBaseVertex);
145
146 /* GL_NV_vertex_program */
147 SET_VertexAttrib1fNV(tab, vfmt->VertexAttrib1fNV);
148 SET_VertexAttrib1fvNV(tab, vfmt->VertexAttrib1fvNV);
149 SET_VertexAttrib2fNV(tab, vfmt->VertexAttrib2fNV);
150 SET_VertexAttrib2fvNV(tab, vfmt->VertexAttrib2fvNV);
151 SET_VertexAttrib3fNV(tab, vfmt->VertexAttrib3fNV);
152 SET_VertexAttrib3fvNV(tab, vfmt->VertexAttrib3fvNV);
153 SET_VertexAttrib4fNV(tab, vfmt->VertexAttrib4fNV);
154 SET_VertexAttrib4fvNV(tab, vfmt->VertexAttrib4fvNV);
155 #if FEATURE_ARB_vertex_program
156 SET_VertexAttrib1fARB(tab, vfmt->VertexAttrib1fARB);
157 SET_VertexAttrib1fvARB(tab, vfmt->VertexAttrib1fvARB);
158 SET_VertexAttrib2fARB(tab, vfmt->VertexAttrib2fARB);
159 SET_VertexAttrib2fvARB(tab, vfmt->VertexAttrib2fvARB);
160 SET_VertexAttrib3fARB(tab, vfmt->VertexAttrib3fARB);
161 SET_VertexAttrib3fvARB(tab, vfmt->VertexAttrib3fvARB);
162 SET_VertexAttrib4fARB(tab, vfmt->VertexAttrib4fARB);
163 SET_VertexAttrib4fvARB(tab, vfmt->VertexAttrib4fvARB);
164 #endif
165 }
166
167
168 void _mesa_init_exec_vtxfmt( GLcontext *ctx )
169 {
170 install_vtxfmt( ctx->Exec, &neutral_vtxfmt );
171 ctx->TnlModule.SwapCount = 0;
172 }
173
174
175 void _mesa_install_exec_vtxfmt( GLcontext *ctx, const GLvertexformat *vfmt )
176 {
177 ctx->TnlModule.Current = vfmt;
178 _mesa_restore_exec_vtxfmt( ctx );
179 }
180
181
182 void _mesa_install_save_vtxfmt( GLcontext *ctx, const GLvertexformat *vfmt )
183 {
184 install_vtxfmt( ctx->Save, vfmt );
185 }
186
187
188 void _mesa_restore_exec_vtxfmt( GLcontext *ctx )
189 {
190 struct gl_tnl_module *tnl = &(ctx->TnlModule);
191 GLuint i;
192
193 /* Restore the neutral tnl module wrapper.
194 */
195 for ( i = 0 ; i < tnl->SwapCount ; i++ ) {
196 *(tnl->Swapped[i].location) = tnl->Swapped[i].function;
197 }
198
199 tnl->SwapCount = 0;
200 }
201
202
203 #endif /* FEATURE_beginend */