1df8381737fa791b64416c98a775b135f2f0af75
[reactos.git] / reactos / dll / opengl / mesa / src / mesa / drivers / common / driverfuncs.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2007 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
25
26 #include "main/glheader.h"
27 #include "main/imports.h"
28 #include "main/accum.h"
29 #include "main/arrayobj.h"
30 #include "main/context.h"
31 #include "main/framebuffer.h"
32 #include "main/mipmap.h"
33 #include "main/queryobj.h"
34 #include "main/readpix.h"
35 #include "main/renderbuffer.h"
36 #include "main/shaderobj.h"
37 #include "main/texcompress.h"
38 #include "main/texformat.h"
39 #include "main/texgetimage.h"
40 #include "main/teximage.h"
41 #include "main/texobj.h"
42 #include "main/texstore.h"
43 #include "main/bufferobj.h"
44 #include "main/fbobject.h"
45 #include "main/samplerobj.h"
46 #include "main/syncobj.h"
47 #include "main/texturebarrier.h"
48 #include "main/transformfeedback.h"
49
50 #include "program/program.h"
51 #include "tnl/tnl.h"
52 #include "swrast/swrast.h"
53 #include "swrast/s_renderbuffer.h"
54
55 #include "driverfuncs.h"
56 #include "meta.h"
57
58
59
60 /**
61 * Plug in default functions for all pointers in the dd_function_table
62 * structure.
63 * Device drivers should call this function and then plug in any
64 * functions which it wants to override.
65 * Some functions (pointers) MUST be implemented by all drivers (REQUIRED).
66 *
67 * \param table the dd_function_table to initialize
68 */
69 void
70 _mesa_init_driver_functions(struct dd_function_table *driver)
71 {
72 memset(driver, 0, sizeof(*driver));
73
74 driver->GetString = NULL; /* REQUIRED! */
75 driver->UpdateState = NULL; /* REQUIRED! */
76 driver->GetBufferSize = NULL; /* REQUIRED! */
77 driver->ResizeBuffers = _mesa_resize_framebuffer;
78 driver->Error = NULL;
79
80 driver->Finish = NULL;
81 driver->Flush = NULL;
82
83 /* framebuffer/image functions */
84 driver->Clear = _swrast_Clear;
85 driver->Accum = _mesa_accum;
86 driver->RasterPos = _tnl_RasterPos;
87 driver->DrawPixels = _swrast_DrawPixels;
88 driver->ReadPixels = _mesa_readpixels;
89 driver->CopyPixels = _swrast_CopyPixels;
90 driver->Bitmap = _swrast_Bitmap;
91
92 /* Texture functions */
93 driver->ChooseTextureFormat = _mesa_choose_tex_format;
94 driver->TexImage1D = _mesa_store_teximage1d;
95 driver->TexImage2D = _mesa_store_teximage2d;
96 driver->TexImage3D = _mesa_store_teximage3d;
97 driver->TexSubImage1D = _mesa_store_texsubimage1d;
98 driver->TexSubImage2D = _mesa_store_texsubimage2d;
99 driver->TexSubImage3D = _mesa_store_texsubimage3d;
100 driver->GetTexImage = _mesa_meta_GetTexImage;
101 driver->CopyTexSubImage1D = _mesa_meta_CopyTexSubImage1D;
102 driver->CopyTexSubImage2D = _mesa_meta_CopyTexSubImage2D;
103 driver->CopyTexSubImage3D = _mesa_meta_CopyTexSubImage3D;
104 driver->GenerateMipmap = _mesa_meta_GenerateMipmap;
105 driver->TestProxyTexImage = _mesa_test_proxy_teximage;
106 driver->CompressedTexImage1D = _mesa_store_compressed_teximage1d;
107 driver->CompressedTexImage2D = _mesa_store_compressed_teximage2d;
108 driver->CompressedTexImage3D = _mesa_store_compressed_teximage3d;
109 driver->CompressedTexSubImage1D = _mesa_store_compressed_texsubimage1d;
110 driver->CompressedTexSubImage2D = _mesa_store_compressed_texsubimage2d;
111 driver->CompressedTexSubImage3D = _mesa_store_compressed_texsubimage3d;
112 driver->GetCompressedTexImage = _mesa_get_compressed_teximage;
113 driver->BindTexture = NULL;
114 driver->NewTextureObject = _mesa_new_texture_object;
115 driver->DeleteTexture = _mesa_delete_texture_object;
116 driver->NewTextureImage = _swrast_new_texture_image;
117 driver->DeleteTextureImage = _swrast_delete_texture_image;
118 driver->AllocTextureImageBuffer = _swrast_alloc_texture_image_buffer;
119 driver->FreeTextureImageBuffer = _swrast_free_texture_image_buffer;
120 driver->MapTextureImage = _swrast_map_teximage;
121 driver->UnmapTextureImage = _swrast_unmap_teximage;
122 driver->DrawTex = _mesa_meta_DrawTex;
123
124 /* Vertex/fragment programs */
125 driver->BindProgram = NULL;
126 driver->NewProgram = _mesa_new_program;
127 driver->DeleteProgram = _mesa_delete_program;
128
129 /* simple state commands */
130 driver->AlphaFunc = NULL;
131 driver->BlendColor = NULL;
132 driver->BlendEquationSeparate = NULL;
133 driver->BlendFuncSeparate = NULL;
134 driver->ClearColor = NULL;
135 driver->ClearDepth = NULL;
136 driver->ClearStencil = NULL;
137 driver->ClipPlane = NULL;
138 driver->ColorMask = NULL;
139 driver->ColorMaterial = NULL;
140 driver->CullFace = NULL;
141 driver->DrawBuffer = NULL;
142 driver->DrawBuffers = NULL;
143 driver->FrontFace = NULL;
144 driver->DepthFunc = NULL;
145 driver->DepthMask = NULL;
146 driver->DepthRange = NULL;
147 driver->Enable = NULL;
148 driver->Fogfv = NULL;
149 driver->Hint = NULL;
150 driver->Lightfv = NULL;
151 driver->LightModelfv = NULL;
152 driver->LineStipple = NULL;
153 driver->LineWidth = NULL;
154 driver->LogicOpcode = NULL;
155 driver->PointParameterfv = NULL;
156 driver->PointSize = NULL;
157 driver->PolygonMode = NULL;
158 driver->PolygonOffset = NULL;
159 driver->PolygonStipple = NULL;
160 driver->ReadBuffer = NULL;
161 driver->RenderMode = NULL;
162 driver->Scissor = NULL;
163 driver->ShadeModel = NULL;
164 driver->StencilFuncSeparate = NULL;
165 driver->StencilOpSeparate = NULL;
166 driver->StencilMaskSeparate = NULL;
167 driver->TexGen = NULL;
168 driver->TexEnv = NULL;
169 driver->TexParameter = NULL;
170 driver->Viewport = NULL;
171
172 /* buffer objects */
173 _mesa_init_buffer_object_functions(driver);
174
175 /* query objects */
176 _mesa_init_query_object_functions(driver);
177
178 _mesa_init_sync_object_functions(driver);
179
180 driver->NewFramebuffer = _mesa_new_framebuffer;
181 driver->NewRenderbuffer = _swrast_new_soft_renderbuffer;
182 driver->MapRenderbuffer = _swrast_map_soft_renderbuffer;
183 driver->UnmapRenderbuffer = _swrast_unmap_soft_renderbuffer;
184 driver->RenderTexture = _swrast_render_texture;
185 driver->FinishRenderTexture = _swrast_finish_render_texture;
186 driver->FramebufferRenderbuffer = _mesa_framebuffer_renderbuffer;
187 driver->ValidateFramebuffer = _mesa_validate_framebuffer;
188
189 driver->BlitFramebuffer = _swrast_BlitFramebuffer;
190
191 _mesa_init_texture_barrier_functions(driver);
192
193 /* APPLE_vertex_array_object */
194 driver->NewArrayObject = _mesa_new_array_object;
195 driver->DeleteArrayObject = _mesa_delete_array_object;
196 driver->BindArrayObject = NULL;
197
198 _mesa_init_shader_object_functions(driver);
199
200 _mesa_init_transform_feedback_functions(driver);
201
202 _mesa_init_sampler_object_functions(driver);
203
204 /* T&L stuff */
205 driver->CurrentExecPrimitive = 0;
206 driver->CurrentSavePrimitive = 0;
207 driver->NeedFlush = 0;
208 driver->SaveNeedFlush = 0;
209
210 driver->ProgramStringNotify = _tnl_program_string;
211 driver->FlushVertices = NULL;
212 driver->SaveFlushVertices = NULL;
213 driver->PrepareExecBegin = NULL;
214 driver->NotifySaveBegin = NULL;
215 driver->LightingSpaceChange = NULL;
216
217 /* display list */
218 driver->NewList = NULL;
219 driver->EndList = NULL;
220 driver->BeginCallList = NULL;
221 driver->EndCallList = NULL;
222
223 /* GL_ARB_texture_storage */
224 driver->AllocTextureStorage = _swrast_AllocTextureStorage;
225 }
226
227
228 /**
229 * Call the ctx->Driver.* state functions with current values to initialize
230 * driver state.
231 * Only the Intel drivers use this so far.
232 */
233 void
234 _mesa_init_driver_state(struct gl_context *ctx)
235 {
236 ctx->Driver.AlphaFunc(ctx, ctx->Color.AlphaFunc, ctx->Color.AlphaRef);
237
238 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
239
240 ctx->Driver.BlendEquationSeparate(ctx,
241 ctx->Color.Blend[0].EquationRGB,
242 ctx->Color.Blend[0].EquationA);
243
244 ctx->Driver.BlendFuncSeparate(ctx,
245 ctx->Color.Blend[0].SrcRGB,
246 ctx->Color.Blend[0].DstRGB,
247 ctx->Color.Blend[0].SrcA,
248 ctx->Color.Blend[0].DstA);
249
250 if (ctx->Driver.ColorMaskIndexed) {
251 GLuint i;
252 for (i = 0; i < ctx->Const.MaxDrawBuffers; i++) {
253 ctx->Driver.ColorMaskIndexed(ctx, i,
254 ctx->Color.ColorMask[i][RCOMP],
255 ctx->Color.ColorMask[i][GCOMP],
256 ctx->Color.ColorMask[i][BCOMP],
257 ctx->Color.ColorMask[i][ACOMP]);
258 }
259 }
260 else {
261 ctx->Driver.ColorMask(ctx,
262 ctx->Color.ColorMask[0][RCOMP],
263 ctx->Color.ColorMask[0][GCOMP],
264 ctx->Color.ColorMask[0][BCOMP],
265 ctx->Color.ColorMask[0][ACOMP]);
266 }
267
268 ctx->Driver.CullFace(ctx, ctx->Polygon.CullFaceMode);
269 ctx->Driver.DepthFunc(ctx, ctx->Depth.Func);
270 ctx->Driver.DepthMask(ctx, ctx->Depth.Mask);
271
272 ctx->Driver.Enable(ctx, GL_ALPHA_TEST, ctx->Color.AlphaEnabled);
273 ctx->Driver.Enable(ctx, GL_BLEND, ctx->Color.BlendEnabled);
274 ctx->Driver.Enable(ctx, GL_COLOR_LOGIC_OP, ctx->Color.ColorLogicOpEnabled);
275 ctx->Driver.Enable(ctx, GL_COLOR_SUM, ctx->Fog.ColorSumEnabled);
276 ctx->Driver.Enable(ctx, GL_CULL_FACE, ctx->Polygon.CullFlag);
277 ctx->Driver.Enable(ctx, GL_DEPTH_TEST, ctx->Depth.Test);
278 ctx->Driver.Enable(ctx, GL_DITHER, ctx->Color.DitherFlag);
279 ctx->Driver.Enable(ctx, GL_FOG, ctx->Fog.Enabled);
280 ctx->Driver.Enable(ctx, GL_LIGHTING, ctx->Light.Enabled);
281 ctx->Driver.Enable(ctx, GL_LINE_SMOOTH, ctx->Line.SmoothFlag);
282 ctx->Driver.Enable(ctx, GL_POLYGON_STIPPLE, ctx->Polygon.StippleFlag);
283 ctx->Driver.Enable(ctx, GL_SCISSOR_TEST, ctx->Scissor.Enabled);
284 ctx->Driver.Enable(ctx, GL_STENCIL_TEST, ctx->Stencil._Enabled);
285 ctx->Driver.Enable(ctx, GL_TEXTURE_1D, GL_FALSE);
286 ctx->Driver.Enable(ctx, GL_TEXTURE_2D, GL_FALSE);
287 ctx->Driver.Enable(ctx, GL_TEXTURE_RECTANGLE_NV, GL_FALSE);
288 ctx->Driver.Enable(ctx, GL_TEXTURE_3D, GL_FALSE);
289 ctx->Driver.Enable(ctx, GL_TEXTURE_CUBE_MAP, GL_FALSE);
290
291 ctx->Driver.Fogfv(ctx, GL_FOG_COLOR, ctx->Fog.Color);
292 {
293 GLfloat mode = (GLfloat) ctx->Fog.Mode;
294 ctx->Driver.Fogfv(ctx, GL_FOG_MODE, &mode);
295 }
296 ctx->Driver.Fogfv(ctx, GL_FOG_DENSITY, &ctx->Fog.Density);
297 ctx->Driver.Fogfv(ctx, GL_FOG_START, &ctx->Fog.Start);
298 ctx->Driver.Fogfv(ctx, GL_FOG_END, &ctx->Fog.End);
299
300 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
301
302 {
303 GLfloat f = (GLfloat) ctx->Light.Model.ColorControl;
304 ctx->Driver.LightModelfv(ctx, GL_LIGHT_MODEL_COLOR_CONTROL, &f);
305 }
306
307 ctx->Driver.LineWidth(ctx, ctx->Line.Width);
308 ctx->Driver.LogicOpcode(ctx, ctx->Color.LogicOp);
309 ctx->Driver.PointSize(ctx, ctx->Point.Size);
310 ctx->Driver.PolygonStipple(ctx, (const GLubyte *) ctx->PolygonStipple);
311 ctx->Driver.Scissor(ctx, ctx->Scissor.X, ctx->Scissor.Y,
312 ctx->Scissor.Width, ctx->Scissor.Height);
313 ctx->Driver.ShadeModel(ctx, ctx->Light.ShadeModel);
314 ctx->Driver.StencilFuncSeparate(ctx, GL_FRONT,
315 ctx->Stencil.Function[0],
316 ctx->Stencil.Ref[0],
317 ctx->Stencil.ValueMask[0]);
318 ctx->Driver.StencilFuncSeparate(ctx, GL_BACK,
319 ctx->Stencil.Function[1],
320 ctx->Stencil.Ref[1],
321 ctx->Stencil.ValueMask[1]);
322 ctx->Driver.StencilMaskSeparate(ctx, GL_FRONT, ctx->Stencil.WriteMask[0]);
323 ctx->Driver.StencilMaskSeparate(ctx, GL_BACK, ctx->Stencil.WriteMask[1]);
324 ctx->Driver.StencilOpSeparate(ctx, GL_FRONT,
325 ctx->Stencil.FailFunc[0],
326 ctx->Stencil.ZFailFunc[0],
327 ctx->Stencil.ZPassFunc[0]);
328 ctx->Driver.StencilOpSeparate(ctx, GL_BACK,
329 ctx->Stencil.FailFunc[1],
330 ctx->Stencil.ZFailFunc[1],
331 ctx->Stencil.ZPassFunc[1]);
332
333
334 ctx->Driver.DrawBuffer(ctx, ctx->Color.DrawBuffer[0]);
335 }