blob: 70951112a18a06b7d7a6676557d92f6f6d7b1feb [file] [log] [blame]
Brian Paulcc8e37f2000-07-12 13:00:09 +00001/*
2 * Mesa 3-D graphics library
Brian Paul176501d2006-10-13 16:34:25 +00003 * Version: 6.5.2
Brian Paulcc8e37f2000-07-12 13:00:09 +00004 *
Brian Paul176501d2006-10-13 16:34:25 +00005 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
Brian Paulcc8e37f2000-07-12 13:00:09 +00006 *
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/*
27 * Image convolution functions.
28 *
29 * Notes: filter kernel elements are indexed by <n> and <m> as in
30 * the GL spec.
31 */
32
33
Brian Paulcc8e37f2000-07-12 13:00:09 +000034#include "glheader.h"
Brian Paulbd3b40a2004-10-31 17:36:23 +000035#include "bufferobj.h"
Brian Paulc893a012000-10-28 20:41:13 +000036#include "colormac.h"
Brian Pauld4b799b2000-08-21 14:24:30 +000037#include "convolve.h"
38#include "context.h"
Brian Paul147b0832000-08-23 14:31:25 +000039#include "image.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000040#include "mtypes.h"
Brian Paul450e9172004-10-31 18:40:55 +000041#include "pixel.h"
Jon Taylorcdfba5d2000-11-23 02:50:56 +000042#include "state.h"
Brian Paulcc8e37f2000-07-12 13:00:09 +000043
44
Brian Paul147b0832000-08-23 14:31:25 +000045/*
46 * Given an internalFormat token passed to glConvolutionFilter
47 * or glSeparableFilter, return the corresponding base format.
48 * Return -1 if invalid token.
49 */
50static GLint
51base_filter_format( GLenum format )
52{
53 switch (format) {
54 case GL_ALPHA:
55 case GL_ALPHA4:
56 case GL_ALPHA8:
57 case GL_ALPHA12:
58 case GL_ALPHA16:
59 return GL_ALPHA;
60 case GL_LUMINANCE:
61 case GL_LUMINANCE4:
62 case GL_LUMINANCE8:
63 case GL_LUMINANCE12:
64 case GL_LUMINANCE16:
65 return GL_LUMINANCE;
66 case GL_LUMINANCE_ALPHA:
67 case GL_LUMINANCE4_ALPHA4:
68 case GL_LUMINANCE6_ALPHA2:
69 case GL_LUMINANCE8_ALPHA8:
70 case GL_LUMINANCE12_ALPHA4:
71 case GL_LUMINANCE12_ALPHA12:
72 case GL_LUMINANCE16_ALPHA16:
73 return GL_LUMINANCE_ALPHA;
74 case GL_INTENSITY:
75 case GL_INTENSITY4:
76 case GL_INTENSITY8:
77 case GL_INTENSITY12:
78 case GL_INTENSITY16:
79 return GL_INTENSITY;
80 case GL_RGB:
81 case GL_R3_G3_B2:
82 case GL_RGB4:
83 case GL_RGB5:
84 case GL_RGB8:
85 case GL_RGB10:
86 case GL_RGB12:
87 case GL_RGB16:
88 return GL_RGB;
89 case 4:
90 case GL_RGBA:
91 case GL_RGBA2:
92 case GL_RGBA4:
93 case GL_RGB5_A1:
94 case GL_RGBA8:
95 case GL_RGB10_A2:
96 case GL_RGBA12:
97 case GL_RGBA16:
98 return GL_RGBA;
99 default:
100 return -1; /* error */
101 }
102}
103
104
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000105void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000106_mesa_ConvolutionFilter1D(GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const GLvoid *image)
107{
Brian Pauld0570642002-03-19 15:22:50 +0000108 GLint baseFormat;
Brian Paul147b0832000-08-23 14:31:25 +0000109 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000110 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000111
112 if (target != GL_CONVOLUTION_1D) {
Brian Paul08836342001-03-03 20:33:27 +0000113 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionFilter1D(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000114 return;
115 }
116
117 baseFormat = base_filter_format(internalFormat);
118 if (baseFormat < 0 || baseFormat == GL_COLOR_INDEX) {
Brian Paul08836342001-03-03 20:33:27 +0000119 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionFilter1D(internalFormat)");
Brian Paul147b0832000-08-23 14:31:25 +0000120 return;
121 }
122
123 if (width < 0 || width > MAX_CONVOLUTION_WIDTH) {
Brian Paul08836342001-03-03 20:33:27 +0000124 _mesa_error(ctx, GL_INVALID_VALUE, "glConvolutionFilter1D(width)");
Brian Paul147b0832000-08-23 14:31:25 +0000125 return;
126 }
127
Brian Paulf959f6e2004-04-22 00:27:31 +0000128 if (!_mesa_is_legal_format_and_type(ctx, format, type)) {
Brian Paul08836342001-03-03 20:33:27 +0000129 _mesa_error(ctx, GL_INVALID_OPERATION, "glConvolutionFilter1D(format or type)");
Brian Paul90f042a2000-12-10 19:23:19 +0000130 return;
131 }
132
133 if (format == GL_COLOR_INDEX ||
Brian Paul147b0832000-08-23 14:31:25 +0000134 format == GL_STENCIL_INDEX ||
135 format == GL_DEPTH_COMPONENT ||
136 format == GL_INTENSITY ||
137 type == GL_BITMAP) {
Brian Paul08836342001-03-03 20:33:27 +0000138 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionFilter1D(format or type)");
Brian Paul147b0832000-08-23 14:31:25 +0000139 return;
140 }
141
142 ctx->Convolution1D.Format = format;
143 ctx->Convolution1D.InternalFormat = internalFormat;
144 ctx->Convolution1D.Width = width;
145 ctx->Convolution1D.Height = 1;
146
Brian Paul95027a02009-09-03 11:23:05 -0600147 image = _mesa_map_validate_pbo_source(ctx,
148 1, &ctx->Unpack, width, 1, 1,
149 format, type, image,
150 "glConvolutionFilter1D");
151 if (!image)
Brian Paul203f3952009-09-03 10:41:14 -0600152 return;
Brian Paulbd3b40a2004-10-31 17:36:23 +0000153
Brian Paul8cfd08b2004-02-28 20:35:57 +0000154 _mesa_unpack_color_span_float(ctx, width, GL_RGBA,
Brian Paul147b0832000-08-23 14:31:25 +0000155 ctx->Convolution1D.Filter,
156 format, type, image, &ctx->Unpack,
Brian Paul4923e192004-02-28 22:30:58 +0000157 0); /* transferOps */
Brian Paul147b0832000-08-23 14:31:25 +0000158
Brian Paul203f3952009-09-03 10:41:14 -0600159 _mesa_unmap_pbo_source(ctx, &ctx->Unpack);
Brian Paulbd3b40a2004-10-31 17:36:23 +0000160
Brian Paul450e9172004-10-31 18:40:55 +0000161 _mesa_scale_and_bias_rgba(width,
162 (GLfloat (*)[4]) ctx->Convolution1D.Filter,
163 ctx->Pixel.ConvolutionFilterScale[0][0],
164 ctx->Pixel.ConvolutionFilterScale[0][1],
165 ctx->Pixel.ConvolutionFilterScale[0][2],
166 ctx->Pixel.ConvolutionFilterScale[0][3],
167 ctx->Pixel.ConvolutionFilterBias[0][0],
168 ctx->Pixel.ConvolutionFilterBias[0][1],
169 ctx->Pixel.ConvolutionFilterBias[0][2],
170 ctx->Pixel.ConvolutionFilterBias[0][3]);
Keith Whitwella96308c2000-10-30 13:31:59 +0000171
Brian Paulb5012e12000-11-10 18:31:04 +0000172 ctx->NewState |= _NEW_PIXEL;
Brian Paul147b0832000-08-23 14:31:25 +0000173}
174
175
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000176void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000177_mesa_ConvolutionFilter2D(GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image)
178{
Brian Pauld0570642002-03-19 15:22:50 +0000179 GLint baseFormat;
Brian Paulb3050282003-12-04 03:19:46 +0000180 GLint i;
Brian Paul147b0832000-08-23 14:31:25 +0000181 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000182 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000183
184 if (target != GL_CONVOLUTION_2D) {
Brian Paul08836342001-03-03 20:33:27 +0000185 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionFilter2D(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000186 return;
187 }
188
189 baseFormat = base_filter_format(internalFormat);
190 if (baseFormat < 0 || baseFormat == GL_COLOR_INDEX) {
Brian Paul08836342001-03-03 20:33:27 +0000191 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionFilter2D(internalFormat)");
Brian Paul147b0832000-08-23 14:31:25 +0000192 return;
193 }
194
195 if (width < 0 || width > MAX_CONVOLUTION_WIDTH) {
Brian Paul08836342001-03-03 20:33:27 +0000196 _mesa_error(ctx, GL_INVALID_VALUE, "glConvolutionFilter2D(width)");
Brian Paul147b0832000-08-23 14:31:25 +0000197 return;
198 }
199 if (height < 0 || height > MAX_CONVOLUTION_HEIGHT) {
Brian Paul08836342001-03-03 20:33:27 +0000200 _mesa_error(ctx, GL_INVALID_VALUE, "glConvolutionFilter2D(height)");
Brian Paul147b0832000-08-23 14:31:25 +0000201 return;
202 }
203
Brian Paulf959f6e2004-04-22 00:27:31 +0000204 if (!_mesa_is_legal_format_and_type(ctx, format, type)) {
Brian Paul08836342001-03-03 20:33:27 +0000205 _mesa_error(ctx, GL_INVALID_OPERATION, "glConvolutionFilter2D(format or type)");
Brian Paul90f042a2000-12-10 19:23:19 +0000206 return;
207 }
208 if (format == GL_COLOR_INDEX ||
Brian Paul147b0832000-08-23 14:31:25 +0000209 format == GL_STENCIL_INDEX ||
210 format == GL_DEPTH_COMPONENT ||
211 format == GL_INTENSITY ||
212 type == GL_BITMAP) {
Brian Paul08836342001-03-03 20:33:27 +0000213 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionFilter2D(format or type)");
Brian Paul147b0832000-08-23 14:31:25 +0000214 return;
215 }
216
Brian Paulb3050282003-12-04 03:19:46 +0000217 /* this should have been caught earlier */
218 assert(_mesa_components_in_format(format));
Brian Paul147b0832000-08-23 14:31:25 +0000219
220 ctx->Convolution2D.Format = format;
221 ctx->Convolution2D.InternalFormat = internalFormat;
222 ctx->Convolution2D.Width = width;
223 ctx->Convolution2D.Height = height;
224
Brian Paul95027a02009-09-03 11:23:05 -0600225 image = _mesa_map_validate_pbo_source(ctx,
226 2, &ctx->Unpack, width, height, 1,
227 format, type, image,
228 "glConvolutionFilter2D");
229 if (!image)
Brian Paul203f3952009-09-03 10:41:14 -0600230 return;
Brian Paulbd3b40a2004-10-31 17:36:23 +0000231
Brian Paul147b0832000-08-23 14:31:25 +0000232 /* Unpack filter image. We always store filters in RGBA format. */
233 for (i = 0; i < height; i++) {
Brian Paul60909382004-11-10 15:46:52 +0000234 const GLvoid *src = _mesa_image_address2d(&ctx->Unpack, image, width,
235 height, format, type, i, 0);
Brian Paul147b0832000-08-23 14:31:25 +0000236 GLfloat *dst = ctx->Convolution2D.Filter + i * width * 4;
Brian Paul8cfd08b2004-02-28 20:35:57 +0000237 _mesa_unpack_color_span_float(ctx, width, GL_RGBA, dst,
Brian Paul147b0832000-08-23 14:31:25 +0000238 format, type, src, &ctx->Unpack,
Brian Paul4923e192004-02-28 22:30:58 +0000239 0); /* transferOps */
Brian Paul147b0832000-08-23 14:31:25 +0000240 }
241
Brian Paul203f3952009-09-03 10:41:14 -0600242 _mesa_unmap_pbo_source(ctx, &ctx->Unpack);
Brian Paulbd3b40a2004-10-31 17:36:23 +0000243
Brian Paul450e9172004-10-31 18:40:55 +0000244 _mesa_scale_and_bias_rgba(width * height,
245 (GLfloat (*)[4]) ctx->Convolution2D.Filter,
246 ctx->Pixel.ConvolutionFilterScale[1][0],
247 ctx->Pixel.ConvolutionFilterScale[1][1],
248 ctx->Pixel.ConvolutionFilterScale[1][2],
249 ctx->Pixel.ConvolutionFilterScale[1][3],
250 ctx->Pixel.ConvolutionFilterBias[1][0],
251 ctx->Pixel.ConvolutionFilterBias[1][1],
252 ctx->Pixel.ConvolutionFilterBias[1][2],
253 ctx->Pixel.ConvolutionFilterBias[1][3]);
Keith Whitwella96308c2000-10-30 13:31:59 +0000254
Brian Paulb5012e12000-11-10 18:31:04 +0000255 ctx->NewState |= _NEW_PIXEL;
Brian Paul147b0832000-08-23 14:31:25 +0000256}
257
258
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000259void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000260_mesa_ConvolutionParameterf(GLenum target, GLenum pname, GLfloat param)
261{
262 GET_CURRENT_CONTEXT(ctx);
263 GLuint c;
Keith Whitwell58e99172001-01-05 02:26:48 +0000264 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000265
266 switch (target) {
267 case GL_CONVOLUTION_1D:
268 c = 0;
269 break;
270 case GL_CONVOLUTION_2D:
271 c = 1;
272 break;
273 case GL_SEPARABLE_2D:
274 c = 2;
275 break;
276 default:
Brian Paul08836342001-03-03 20:33:27 +0000277 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameterf(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000278 return;
279 }
280
281 switch (pname) {
282 case GL_CONVOLUTION_BORDER_MODE:
283 if (param == (GLfloat) GL_REDUCE ||
284 param == (GLfloat) GL_CONSTANT_BORDER ||
285 param == (GLfloat) GL_REPLICATE_BORDER) {
286 ctx->Pixel.ConvolutionBorderMode[c] = (GLenum) param;
287 }
288 else {
Brian Paul08836342001-03-03 20:33:27 +0000289 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameterf(params)");
Brian Paul147b0832000-08-23 14:31:25 +0000290 return;
291 }
292 break;
293 default:
Brian Paul08836342001-03-03 20:33:27 +0000294 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameterf(pname)");
Brian Paul147b0832000-08-23 14:31:25 +0000295 return;
296 }
Keith Whitwella96308c2000-10-30 13:31:59 +0000297
298 ctx->NewState |= _NEW_PIXEL;
Brian Paul147b0832000-08-23 14:31:25 +0000299}
300
301
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000302void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000303_mesa_ConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat *params)
304{
305 GET_CURRENT_CONTEXT(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000306 GLuint c;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000307 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000308
309 switch (target) {
310 case GL_CONVOLUTION_1D:
311 c = 0;
Brian Paul147b0832000-08-23 14:31:25 +0000312 break;
313 case GL_CONVOLUTION_2D:
314 c = 1;
Brian Paul147b0832000-08-23 14:31:25 +0000315 break;
316 case GL_SEPARABLE_2D:
317 c = 2;
Brian Paul147b0832000-08-23 14:31:25 +0000318 break;
319 default:
Brian Paul08836342001-03-03 20:33:27 +0000320 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameterfv(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000321 return;
322 }
323
324 switch (pname) {
325 case GL_CONVOLUTION_BORDER_COLOR:
326 COPY_4V(ctx->Pixel.ConvolutionBorderColor[c], params);
327 break;
328 case GL_CONVOLUTION_BORDER_MODE:
329 if (params[0] == (GLfloat) GL_REDUCE ||
330 params[0] == (GLfloat) GL_CONSTANT_BORDER ||
331 params[0] == (GLfloat) GL_REPLICATE_BORDER) {
332 ctx->Pixel.ConvolutionBorderMode[c] = (GLenum) params[0];
333 }
334 else {
Brian Paul08836342001-03-03 20:33:27 +0000335 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameterfv(params)");
Brian Paul147b0832000-08-23 14:31:25 +0000336 return;
337 }
338 break;
339 case GL_CONVOLUTION_FILTER_SCALE:
340 COPY_4V(ctx->Pixel.ConvolutionFilterScale[c], params);
341 break;
342 case GL_CONVOLUTION_FILTER_BIAS:
343 COPY_4V(ctx->Pixel.ConvolutionFilterBias[c], params);
344 break;
345 default:
Brian Paul08836342001-03-03 20:33:27 +0000346 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameterfv(pname)");
Brian Paul147b0832000-08-23 14:31:25 +0000347 return;
348 }
Keith Whitwella96308c2000-10-30 13:31:59 +0000349
350 ctx->NewState |= _NEW_PIXEL;
Brian Paul147b0832000-08-23 14:31:25 +0000351}
352
353
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000354void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000355_mesa_ConvolutionParameteri(GLenum target, GLenum pname, GLint param)
356{
357 GET_CURRENT_CONTEXT(ctx);
358 GLuint c;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000359 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000360
361 switch (target) {
362 case GL_CONVOLUTION_1D:
363 c = 0;
364 break;
365 case GL_CONVOLUTION_2D:
366 c = 1;
367 break;
368 case GL_SEPARABLE_2D:
369 c = 2;
370 break;
371 default:
Brian Paul08836342001-03-03 20:33:27 +0000372 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameteri(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000373 return;
374 }
375
376 switch (pname) {
377 case GL_CONVOLUTION_BORDER_MODE:
378 if (param == (GLint) GL_REDUCE ||
379 param == (GLint) GL_CONSTANT_BORDER ||
380 param == (GLint) GL_REPLICATE_BORDER) {
381 ctx->Pixel.ConvolutionBorderMode[c] = (GLenum) param;
382 }
383 else {
Brian Paul08836342001-03-03 20:33:27 +0000384 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameteri(params)");
Brian Paul147b0832000-08-23 14:31:25 +0000385 return;
386 }
387 break;
388 default:
Brian Paul08836342001-03-03 20:33:27 +0000389 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameteri(pname)");
Brian Paul147b0832000-08-23 14:31:25 +0000390 return;
391 }
Keith Whitwella96308c2000-10-30 13:31:59 +0000392
393 ctx->NewState |= _NEW_PIXEL;
Brian Paul147b0832000-08-23 14:31:25 +0000394}
395
396
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000397void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000398_mesa_ConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params)
399{
400 GET_CURRENT_CONTEXT(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000401 GLuint c;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000402 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000403
404 switch (target) {
405 case GL_CONVOLUTION_1D:
406 c = 0;
Brian Paul147b0832000-08-23 14:31:25 +0000407 break;
408 case GL_CONVOLUTION_2D:
409 c = 1;
Brian Paul147b0832000-08-23 14:31:25 +0000410 break;
411 case GL_SEPARABLE_2D:
412 c = 2;
Brian Paul147b0832000-08-23 14:31:25 +0000413 break;
414 default:
Brian Paul08836342001-03-03 20:33:27 +0000415 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameteriv(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000416 return;
417 }
418
419 switch (pname) {
420 case GL_CONVOLUTION_BORDER_COLOR:
421 ctx->Pixel.ConvolutionBorderColor[c][0] = INT_TO_FLOAT(params[0]);
422 ctx->Pixel.ConvolutionBorderColor[c][1] = INT_TO_FLOAT(params[1]);
423 ctx->Pixel.ConvolutionBorderColor[c][2] = INT_TO_FLOAT(params[2]);
424 ctx->Pixel.ConvolutionBorderColor[c][3] = INT_TO_FLOAT(params[3]);
425 break;
426 case GL_CONVOLUTION_BORDER_MODE:
427 if (params[0] == (GLint) GL_REDUCE ||
428 params[0] == (GLint) GL_CONSTANT_BORDER ||
429 params[0] == (GLint) GL_REPLICATE_BORDER) {
430 ctx->Pixel.ConvolutionBorderMode[c] = (GLenum) params[0];
431 }
432 else {
Brian Paul08836342001-03-03 20:33:27 +0000433 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameteriv(params)");
Brian Paul147b0832000-08-23 14:31:25 +0000434 return;
435 }
436 break;
437 case GL_CONVOLUTION_FILTER_SCALE:
Karl Schultz7c426812001-09-19 20:30:44 +0000438 /* COPY_4V(ctx->Pixel.ConvolutionFilterScale[c], params); */
439 /* need cast to prevent compiler warnings */
440 ctx->Pixel.ConvolutionFilterScale[c][0] = (GLfloat) params[0];
441 ctx->Pixel.ConvolutionFilterScale[c][1] = (GLfloat) params[1];
442 ctx->Pixel.ConvolutionFilterScale[c][2] = (GLfloat) params[2];
443 ctx->Pixel.ConvolutionFilterScale[c][3] = (GLfloat) params[3];
Brian Paul147b0832000-08-23 14:31:25 +0000444 break;
445 case GL_CONVOLUTION_FILTER_BIAS:
Karl Schultz7c426812001-09-19 20:30:44 +0000446 /* COPY_4V(ctx->Pixel.ConvolutionFilterBias[c], params); */
447 /* need cast to prevent compiler warnings */
448 ctx->Pixel.ConvolutionFilterBias[c][0] = (GLfloat) params[0];
449 ctx->Pixel.ConvolutionFilterBias[c][1] = (GLfloat) params[1];
450 ctx->Pixel.ConvolutionFilterBias[c][2] = (GLfloat) params[2];
451 ctx->Pixel.ConvolutionFilterBias[c][3] = (GLfloat) params[3];
Brian Paul147b0832000-08-23 14:31:25 +0000452 break;
453 default:
Brian Paul08836342001-03-03 20:33:27 +0000454 _mesa_error(ctx, GL_INVALID_ENUM, "glConvolutionParameteriv(pname)");
Brian Paul147b0832000-08-23 14:31:25 +0000455 return;
456 }
Keith Whitwella96308c2000-10-30 13:31:59 +0000457
458 ctx->NewState |= _NEW_PIXEL;
Brian Paul147b0832000-08-23 14:31:25 +0000459}
460
461
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000462void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000463_mesa_CopyConvolutionFilter1D(GLenum target, GLenum internalFormat, GLint x, GLint y, GLsizei width)
464{
Brian Pauld0570642002-03-19 15:22:50 +0000465 GLint baseFormat;
Brian Paul147b0832000-08-23 14:31:25 +0000466 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000467 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000468
469 if (target != GL_CONVOLUTION_1D) {
Brian Paul08836342001-03-03 20:33:27 +0000470 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyConvolutionFilter1D(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000471 return;
472 }
473
474 baseFormat = base_filter_format(internalFormat);
475 if (baseFormat < 0 || baseFormat == GL_COLOR_INDEX) {
Brian Paul08836342001-03-03 20:33:27 +0000476 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyConvolutionFilter1D(internalFormat)");
Brian Paul147b0832000-08-23 14:31:25 +0000477 return;
478 }
479
480 if (width < 0 || width > MAX_CONVOLUTION_WIDTH) {
Brian Paul08836342001-03-03 20:33:27 +0000481 _mesa_error(ctx, GL_INVALID_VALUE, "glCopyConvolutionFilter1D(width)");
Brian Paul147b0832000-08-23 14:31:25 +0000482 return;
483 }
484
Keith Whitwell70989242001-03-19 02:25:35 +0000485 ctx->Driver.CopyConvolutionFilter1D( ctx, target,
486 internalFormat, x, y, width);
Brian Paul147b0832000-08-23 14:31:25 +0000487}
488
489
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000490void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000491_mesa_CopyConvolutionFilter2D(GLenum target, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height)
492{
Brian Pauld0570642002-03-19 15:22:50 +0000493 GLint baseFormat;
Brian Paul147b0832000-08-23 14:31:25 +0000494 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000495 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000496
497 if (target != GL_CONVOLUTION_2D) {
Brian Paul08836342001-03-03 20:33:27 +0000498 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyConvolutionFilter2D(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000499 return;
500 }
501
502 baseFormat = base_filter_format(internalFormat);
503 if (baseFormat < 0 || baseFormat == GL_COLOR_INDEX) {
Brian Paul08836342001-03-03 20:33:27 +0000504 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyConvolutionFilter2D(internalFormat)");
Brian Paul147b0832000-08-23 14:31:25 +0000505 return;
506 }
507
508 if (width < 0 || width > MAX_CONVOLUTION_WIDTH) {
Brian Paul08836342001-03-03 20:33:27 +0000509 _mesa_error(ctx, GL_INVALID_VALUE, "glCopyConvolutionFilter2D(width)");
Brian Paul147b0832000-08-23 14:31:25 +0000510 return;
511 }
512 if (height < 0 || height > MAX_CONVOLUTION_HEIGHT) {
Brian Paul08836342001-03-03 20:33:27 +0000513 _mesa_error(ctx, GL_INVALID_VALUE, "glCopyConvolutionFilter2D(height)");
Brian Paul147b0832000-08-23 14:31:25 +0000514 return;
515 }
516
Keith Whitwell70989242001-03-19 02:25:35 +0000517 ctx->Driver.CopyConvolutionFilter2D( ctx, target, internalFormat, x, y,
518 width, height );
Brian Paul147b0832000-08-23 14:31:25 +0000519}
520
521
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000522void GLAPIENTRY
Brian Paul176501d2006-10-13 16:34:25 +0000523_mesa_GetConvolutionFilter(GLenum target, GLenum format, GLenum type,
524 GLvoid *image)
Brian Paul147b0832000-08-23 14:31:25 +0000525{
Brian Paul176501d2006-10-13 16:34:25 +0000526 struct gl_convolution_attrib *filter;
Brian Paulb51b0a82001-03-07 05:06:11 +0000527 GLuint row;
Brian Paul147b0832000-08-23 14:31:25 +0000528 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000529 ASSERT_OUTSIDE_BEGIN_END(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000530
Brian Paul0c000ec2000-11-21 23:26:13 +0000531 if (ctx->NewState) {
Brian Paul08836342001-03-03 20:33:27 +0000532 _mesa_update_state(ctx);
Brian Paul0c000ec2000-11-21 23:26:13 +0000533 }
534
Brian Paulf959f6e2004-04-22 00:27:31 +0000535 if (!_mesa_is_legal_format_and_type(ctx, format, type)) {
Brian Paul08836342001-03-03 20:33:27 +0000536 _mesa_error(ctx, GL_INVALID_OPERATION, "glGetConvolutionFilter(format or type)");
Brian Paul90f042a2000-12-10 19:23:19 +0000537 return;
538 }
539
540 if (format == GL_COLOR_INDEX ||
Brian Paul147b0832000-08-23 14:31:25 +0000541 format == GL_STENCIL_INDEX ||
542 format == GL_DEPTH_COMPONENT ||
543 format == GL_INTENSITY ||
544 type == GL_BITMAP) {
Brian Paul08836342001-03-03 20:33:27 +0000545 _mesa_error(ctx, GL_INVALID_ENUM, "glGetConvolutionFilter(format or type)");
Brian Paul147b0832000-08-23 14:31:25 +0000546 return;
547 }
548
Brian Paulf75d6972000-09-05 20:28:56 +0000549 switch (target) {
550 case GL_CONVOLUTION_1D:
551 filter = &(ctx->Convolution1D);
552 break;
553 case GL_CONVOLUTION_2D:
554 filter = &(ctx->Convolution2D);
555 break;
556 default:
Brian Paul08836342001-03-03 20:33:27 +0000557 _mesa_error(ctx, GL_INVALID_ENUM, "glGetConvolutionFilter(target)");
Brian Paulf75d6972000-09-05 20:28:56 +0000558 return;
559 }
560
Brian Paul95027a02009-09-03 11:23:05 -0600561 image = _mesa_map_validate_pbo_dest(ctx, 2, &ctx->Pack,
562 filter->Width, filter->Height, 1,
563 format, type, image,
564 "glGetConvolutionFilter");
565 if (!image)
Brian Paul203f3952009-09-03 10:41:14 -0600566 return;
Brian Paulbd3b40a2004-10-31 17:36:23 +0000567
Brian Paulf75d6972000-09-05 20:28:56 +0000568 for (row = 0; row < filter->Height; row++) {
Brian Paul60909382004-11-10 15:46:52 +0000569 GLvoid *dst = _mesa_image_address2d(&ctx->Pack, image, filter->Width,
570 filter->Height, format, type,
571 row, 0);
Brian Paul176501d2006-10-13 16:34:25 +0000572 GLfloat (*src)[4] = (GLfloat (*)[4]) (filter->Filter + row * filter->Width * 4);
573 _mesa_pack_rgba_span_float(ctx, filter->Width, src,
574 format, type, dst, &ctx->Pack, 0x0);
Brian Paulf75d6972000-09-05 20:28:56 +0000575 }
Brian Paulbd3b40a2004-10-31 17:36:23 +0000576
Brian Paul203f3952009-09-03 10:41:14 -0600577 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
Brian Paul147b0832000-08-23 14:31:25 +0000578}
579
580
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000581void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000582_mesa_GetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params)
583{
584 GET_CURRENT_CONTEXT(ctx);
585 const struct gl_convolution_attrib *conv;
586 GLuint c;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000587 ASSERT_OUTSIDE_BEGIN_END(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000588
589 switch (target) {
590 case GL_CONVOLUTION_1D:
591 c = 0;
592 conv = &ctx->Convolution1D;
593 break;
594 case GL_CONVOLUTION_2D:
595 c = 1;
596 conv = &ctx->Convolution2D;
597 break;
598 case GL_SEPARABLE_2D:
599 c = 2;
600 conv = &ctx->Separable2D;
601 break;
602 default:
Brian Paul08836342001-03-03 20:33:27 +0000603 _mesa_error(ctx, GL_INVALID_ENUM, "glGetConvolutionParameterfv(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000604 return;
605 }
606
607 switch (pname) {
608 case GL_CONVOLUTION_BORDER_COLOR:
609 COPY_4V(params, ctx->Pixel.ConvolutionBorderColor[c]);
610 break;
611 case GL_CONVOLUTION_BORDER_MODE:
612 *params = (GLfloat) ctx->Pixel.ConvolutionBorderMode[c];
613 break;
614 case GL_CONVOLUTION_FILTER_SCALE:
615 COPY_4V(params, ctx->Pixel.ConvolutionFilterScale[c]);
616 break;
617 case GL_CONVOLUTION_FILTER_BIAS:
618 COPY_4V(params, ctx->Pixel.ConvolutionFilterBias[c]);
619 break;
620 case GL_CONVOLUTION_FORMAT:
621 *params = (GLfloat) conv->Format;
622 break;
623 case GL_CONVOLUTION_WIDTH:
624 *params = (GLfloat) conv->Width;
625 break;
626 case GL_CONVOLUTION_HEIGHT:
627 *params = (GLfloat) conv->Height;
628 break;
629 case GL_MAX_CONVOLUTION_WIDTH:
630 *params = (GLfloat) ctx->Const.MaxConvolutionWidth;
631 break;
632 case GL_MAX_CONVOLUTION_HEIGHT:
633 *params = (GLfloat) ctx->Const.MaxConvolutionHeight;
634 break;
635 default:
Brian Paul08836342001-03-03 20:33:27 +0000636 _mesa_error(ctx, GL_INVALID_ENUM, "glGetConvolutionParameterfv(pname)");
Brian Paul147b0832000-08-23 14:31:25 +0000637 return;
638 }
639}
640
641
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000642void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000643_mesa_GetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params)
644{
645 GET_CURRENT_CONTEXT(ctx);
646 const struct gl_convolution_attrib *conv;
647 GLuint c;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000648 ASSERT_OUTSIDE_BEGIN_END(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000649
650 switch (target) {
651 case GL_CONVOLUTION_1D:
652 c = 0;
653 conv = &ctx->Convolution1D;
654 break;
655 case GL_CONVOLUTION_2D:
656 c = 1;
657 conv = &ctx->Convolution2D;
658 break;
659 case GL_SEPARABLE_2D:
660 c = 2;
661 conv = &ctx->Separable2D;
662 break;
663 default:
Brian Paul08836342001-03-03 20:33:27 +0000664 _mesa_error(ctx, GL_INVALID_ENUM, "glGetConvolutionParameteriv(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000665 return;
666 }
667
668 switch (pname) {
669 case GL_CONVOLUTION_BORDER_COLOR:
670 params[0] = FLOAT_TO_INT(ctx->Pixel.ConvolutionBorderColor[c][0]);
671 params[1] = FLOAT_TO_INT(ctx->Pixel.ConvolutionBorderColor[c][1]);
672 params[2] = FLOAT_TO_INT(ctx->Pixel.ConvolutionBorderColor[c][2]);
673 params[3] = FLOAT_TO_INT(ctx->Pixel.ConvolutionBorderColor[c][3]);
674 break;
675 case GL_CONVOLUTION_BORDER_MODE:
676 *params = (GLint) ctx->Pixel.ConvolutionBorderMode[c];
677 break;
678 case GL_CONVOLUTION_FILTER_SCALE:
679 params[0] = (GLint) ctx->Pixel.ConvolutionFilterScale[c][0];
680 params[1] = (GLint) ctx->Pixel.ConvolutionFilterScale[c][1];
681 params[2] = (GLint) ctx->Pixel.ConvolutionFilterScale[c][2];
682 params[3] = (GLint) ctx->Pixel.ConvolutionFilterScale[c][3];
683 break;
684 case GL_CONVOLUTION_FILTER_BIAS:
685 params[0] = (GLint) ctx->Pixel.ConvolutionFilterBias[c][0];
686 params[1] = (GLint) ctx->Pixel.ConvolutionFilterBias[c][1];
687 params[2] = (GLint) ctx->Pixel.ConvolutionFilterBias[c][2];
688 params[3] = (GLint) ctx->Pixel.ConvolutionFilterBias[c][3];
689 break;
690 case GL_CONVOLUTION_FORMAT:
691 *params = (GLint) conv->Format;
692 break;
693 case GL_CONVOLUTION_WIDTH:
694 *params = (GLint) conv->Width;
695 break;
696 case GL_CONVOLUTION_HEIGHT:
697 *params = (GLint) conv->Height;
698 break;
699 case GL_MAX_CONVOLUTION_WIDTH:
700 *params = (GLint) ctx->Const.MaxConvolutionWidth;
701 break;
702 case GL_MAX_CONVOLUTION_HEIGHT:
703 *params = (GLint) ctx->Const.MaxConvolutionHeight;
704 break;
705 default:
Brian Paul08836342001-03-03 20:33:27 +0000706 _mesa_error(ctx, GL_INVALID_ENUM, "glGetConvolutionParameteriv(pname)");
Brian Paul147b0832000-08-23 14:31:25 +0000707 return;
708 }
709}
710
711
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000712void GLAPIENTRY
Brian Paul176501d2006-10-13 16:34:25 +0000713_mesa_GetSeparableFilter(GLenum target, GLenum format, GLenum type,
714 GLvoid *row, GLvoid *column, GLvoid *span)
Brian Paul147b0832000-08-23 14:31:25 +0000715{
Brian Paulf75d6972000-09-05 20:28:56 +0000716 const GLint colStart = MAX_CONVOLUTION_WIDTH * 4;
Brian Paul176501d2006-10-13 16:34:25 +0000717 struct gl_convolution_attrib *filter;
Brian Paul147b0832000-08-23 14:31:25 +0000718 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000719 ASSERT_OUTSIDE_BEGIN_END(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000720
Brian Paul0c000ec2000-11-21 23:26:13 +0000721 if (ctx->NewState) {
Brian Paul08836342001-03-03 20:33:27 +0000722 _mesa_update_state(ctx);
Brian Paul0c000ec2000-11-21 23:26:13 +0000723 }
724
Brian Paul147b0832000-08-23 14:31:25 +0000725 if (target != GL_SEPARABLE_2D) {
Brian Paul08836342001-03-03 20:33:27 +0000726 _mesa_error(ctx, GL_INVALID_ENUM, "glGetSeparableFilter(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000727 return;
728 }
729
Brian Paulf959f6e2004-04-22 00:27:31 +0000730 if (!_mesa_is_legal_format_and_type(ctx, format, type)) {
Brian Paul176501d2006-10-13 16:34:25 +0000731 _mesa_error(ctx, GL_INVALID_OPERATION,
732 "glGetConvolutionFilter(format or type)");
Brian Paul90f042a2000-12-10 19:23:19 +0000733 return;
734 }
735
736 if (format == GL_COLOR_INDEX ||
Brian Paul147b0832000-08-23 14:31:25 +0000737 format == GL_STENCIL_INDEX ||
738 format == GL_DEPTH_COMPONENT ||
739 format == GL_INTENSITY ||
740 type == GL_BITMAP) {
Brian Paul08836342001-03-03 20:33:27 +0000741 _mesa_error(ctx, GL_INVALID_ENUM, "glGetConvolutionFilter(format or type)");
Brian Paul147b0832000-08-23 14:31:25 +0000742 return;
743 }
744
Brian Paulf75d6972000-09-05 20:28:56 +0000745 filter = &ctx->Separable2D;
746
Brian Paul2db37ef2009-09-03 11:41:29 -0600747 /* Get row filter */
748 row = _mesa_map_validate_pbo_dest(ctx, 1, &ctx->Pack,
749 filter->Width, 1, 1,
750 format, type, row,
751 "glGetConvolutionFilter");
Brian Paulbd3b40a2004-10-31 17:36:23 +0000752 if (row) {
Brian Paul60909382004-11-10 15:46:52 +0000753 GLvoid *dst = _mesa_image_address1d(&ctx->Pack, row, filter->Width,
754 format, type, 0);
Brian Paul8cfd08b2004-02-28 20:35:57 +0000755 _mesa_pack_rgba_span_float(ctx, filter->Width,
Brian Paul176501d2006-10-13 16:34:25 +0000756 (GLfloat (*)[4]) filter->Filter,
757 format, type, dst, &ctx->Pack, 0x0);
Brian Paul2db37ef2009-09-03 11:41:29 -0600758 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
Brian Paulf75d6972000-09-05 20:28:56 +0000759 }
760
Brian Paul2db37ef2009-09-03 11:41:29 -0600761 /* get column filter */
762 column = _mesa_map_validate_pbo_dest(ctx, 1, &ctx->Pack,
763 filter->Height, 1, 1,
Brian Pauld75a99e2009-09-03 12:10:53 -0600764 format, type, column,
Brian Paul2db37ef2009-09-03 11:41:29 -0600765 "glGetConvolutionFilter");
Brian Paulbd3b40a2004-10-31 17:36:23 +0000766 if (column) {
Brian Paul60909382004-11-10 15:46:52 +0000767 GLvoid *dst = _mesa_image_address1d(&ctx->Pack, column, filter->Height,
768 format, type, 0);
Brian Paul176501d2006-10-13 16:34:25 +0000769 GLfloat (*src)[4] = (GLfloat (*)[4]) (filter->Filter + colStart);
770 _mesa_pack_rgba_span_float(ctx, filter->Height, src,
771 format, type, dst, &ctx->Pack, 0x0);
Brian Paul2db37ef2009-09-03 11:41:29 -0600772 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
Brian Paulf75d6972000-09-05 20:28:56 +0000773 }
774
775 (void) span; /* unused at this time */
Brian Paul147b0832000-08-23 14:31:25 +0000776}
777
778
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000779void GLAPIENTRY
Brian Paul147b0832000-08-23 14:31:25 +0000780_mesa_SeparableFilter2D(GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
781{
782 const GLint colStart = MAX_CONVOLUTION_WIDTH * 4;
Brian Pauld0570642002-03-19 15:22:50 +0000783 GLint baseFormat;
Brian Paul147b0832000-08-23 14:31:25 +0000784 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000785 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paul147b0832000-08-23 14:31:25 +0000786
787 if (target != GL_SEPARABLE_2D) {
Brian Paul08836342001-03-03 20:33:27 +0000788 _mesa_error(ctx, GL_INVALID_ENUM, "glSeparableFilter2D(target)");
Brian Paul147b0832000-08-23 14:31:25 +0000789 return;
790 }
791
792 baseFormat = base_filter_format(internalFormat);
793 if (baseFormat < 0 || baseFormat == GL_COLOR_INDEX) {
Brian Paul08836342001-03-03 20:33:27 +0000794 _mesa_error(ctx, GL_INVALID_ENUM, "glSeparableFilter2D(internalFormat)");
Brian Paul147b0832000-08-23 14:31:25 +0000795 return;
796 }
797
798 if (width < 0 || width > MAX_CONVOLUTION_WIDTH) {
Brian Paul08836342001-03-03 20:33:27 +0000799 _mesa_error(ctx, GL_INVALID_VALUE, "glSeparableFilter2D(width)");
Brian Paul147b0832000-08-23 14:31:25 +0000800 return;
801 }
802 if (height < 0 || height > MAX_CONVOLUTION_HEIGHT) {
Brian Paul08836342001-03-03 20:33:27 +0000803 _mesa_error(ctx, GL_INVALID_VALUE, "glSeparableFilter2D(height)");
Brian Paul147b0832000-08-23 14:31:25 +0000804 return;
805 }
806
Brian Paulf959f6e2004-04-22 00:27:31 +0000807 if (!_mesa_is_legal_format_and_type(ctx, format, type)) {
Brian Paul08836342001-03-03 20:33:27 +0000808 _mesa_error(ctx, GL_INVALID_OPERATION, "glSeparableFilter2D(format or type)");
Brian Paul90f042a2000-12-10 19:23:19 +0000809 return;
810 }
811
812 if (format == GL_COLOR_INDEX ||
Brian Paul147b0832000-08-23 14:31:25 +0000813 format == GL_STENCIL_INDEX ||
814 format == GL_DEPTH_COMPONENT ||
815 format == GL_INTENSITY ||
816 type == GL_BITMAP) {
Brian Paul08836342001-03-03 20:33:27 +0000817 _mesa_error(ctx, GL_INVALID_ENUM, "glSeparableFilter2D(format or type)");
Brian Paul147b0832000-08-23 14:31:25 +0000818 return;
819 }
820
821 ctx->Separable2D.Format = format;
822 ctx->Separable2D.InternalFormat = internalFormat;
823 ctx->Separable2D.Width = width;
824 ctx->Separable2D.Height = height;
825
Brian Paulbd3b40a2004-10-31 17:36:23 +0000826 /* unpack row filter */
Brian Paul2db37ef2009-09-03 11:41:29 -0600827 row = _mesa_map_validate_pbo_source(ctx, 1, &ctx->Unpack,
828 width, 1, 1,
829 format, type, row,
Brian Pauld75a99e2009-09-03 12:10:53 -0600830 "glSeparableFilter2D");
Brian Paulbd3b40a2004-10-31 17:36:23 +0000831 if (row) {
832 _mesa_unpack_color_span_float(ctx, width, GL_RGBA,
833 ctx->Separable2D.Filter,
834 format, type, row, &ctx->Unpack,
Brian Paul2db37ef2009-09-03 11:41:29 -0600835 0x0); /* transferOps */
Brian Paul450e9172004-10-31 18:40:55 +0000836 _mesa_scale_and_bias_rgba(width,
837 (GLfloat (*)[4]) ctx->Separable2D.Filter,
838 ctx->Pixel.ConvolutionFilterScale[2][0],
839 ctx->Pixel.ConvolutionFilterScale[2][1],
840 ctx->Pixel.ConvolutionFilterScale[2][2],
841 ctx->Pixel.ConvolutionFilterScale[2][3],
842 ctx->Pixel.ConvolutionFilterBias[2][0],
843 ctx->Pixel.ConvolutionFilterBias[2][1],
844 ctx->Pixel.ConvolutionFilterBias[2][2],
845 ctx->Pixel.ConvolutionFilterBias[2][3]);
Brian Paul2db37ef2009-09-03 11:41:29 -0600846 _mesa_unmap_pbo_source(ctx, &ctx->Unpack);
Brian Paul147b0832000-08-23 14:31:25 +0000847 }
848
849 /* unpack column filter */
Brian Paul2db37ef2009-09-03 11:41:29 -0600850 column = _mesa_map_validate_pbo_source(ctx, 1, &ctx->Unpack,
851 height, 1, 1,
Brian Pauld75a99e2009-09-03 12:10:53 -0600852 format, type, column,
853 "glSeparableFilter2D");
Brian Paulbd3b40a2004-10-31 17:36:23 +0000854 if (column) {
Brian Pauleffb7202004-10-31 18:41:38 +0000855 _mesa_unpack_color_span_float(ctx, height, GL_RGBA,
856 &ctx->Separable2D.Filter[colStart],
857 format, type, column, &ctx->Unpack,
858 0); /* transferOps */
Brian Paul147b0832000-08-23 14:31:25 +0000859
Brian Paul450e9172004-10-31 18:40:55 +0000860 _mesa_scale_and_bias_rgba(height,
861 (GLfloat (*)[4]) (ctx->Separable2D.Filter + colStart),
862 ctx->Pixel.ConvolutionFilterScale[2][0],
863 ctx->Pixel.ConvolutionFilterScale[2][1],
864 ctx->Pixel.ConvolutionFilterScale[2][2],
865 ctx->Pixel.ConvolutionFilterScale[2][3],
866 ctx->Pixel.ConvolutionFilterBias[2][0],
867 ctx->Pixel.ConvolutionFilterBias[2][1],
868 ctx->Pixel.ConvolutionFilterBias[2][2],
869 ctx->Pixel.ConvolutionFilterBias[2][3]);
Brian Paul2db37ef2009-09-03 11:41:29 -0600870 _mesa_unmap_pbo_source(ctx, &ctx->Unpack);
Brian Paulbd3b40a2004-10-31 17:36:23 +0000871 }
872
Brian Paul434ec3a2009-08-12 13:46:16 -0600873 if (_mesa_is_bufferobj(ctx->Unpack.BufferObj)) {
Brian Paulbd3b40a2004-10-31 17:36:23 +0000874 ctx->Driver.UnmapBuffer(ctx, GL_PIXEL_UNPACK_BUFFER_EXT,
875 ctx->Unpack.BufferObj);
Brian Paul147b0832000-08-23 14:31:25 +0000876 }
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000877
Brian Paulb5012e12000-11-10 18:31:04 +0000878 ctx->NewState |= _NEW_PIXEL;
Brian Paul147b0832000-08-23 14:31:25 +0000879}
880
881
882/**********************************************************************/
883/*** image convolution functions ***/
884/**********************************************************************/
885
Brian Pauld4b799b2000-08-21 14:24:30 +0000886static void
887convolve_1d_reduce(GLint srcWidth, const GLfloat src[][4],
888 GLint filterWidth, const GLfloat filter[][4],
889 GLfloat dest[][4])
Brian Paulcc8e37f2000-07-12 13:00:09 +0000890{
Brian Paul7e708742000-08-22 18:54:25 +0000891 GLint dstWidth;
Brian Paulcc8e37f2000-07-12 13:00:09 +0000892 GLint i, n;
893
Brian Paul7e708742000-08-22 18:54:25 +0000894 if (filterWidth >= 1)
895 dstWidth = srcWidth - (filterWidth - 1);
896 else
897 dstWidth = srcWidth;
898
Brian Paulcc8e37f2000-07-12 13:00:09 +0000899 if (dstWidth <= 0)
900 return; /* null result */
901
902 for (i = 0; i < dstWidth; i++) {
903 GLfloat sumR = 0.0;
904 GLfloat sumG = 0.0;
905 GLfloat sumB = 0.0;
906 GLfloat sumA = 0.0;
907 for (n = 0; n < filterWidth; n++) {
908 sumR += src[i + n][RCOMP] * filter[n][RCOMP];
909 sumG += src[i + n][GCOMP] * filter[n][GCOMP];
910 sumB += src[i + n][BCOMP] * filter[n][BCOMP];
911 sumA += src[i + n][ACOMP] * filter[n][ACOMP];
912 }
913 dest[i][RCOMP] = sumR;
914 dest[i][GCOMP] = sumG;
915 dest[i][BCOMP] = sumB;
916 dest[i][ACOMP] = sumA;
917 }
918}
919
920
Brian Pauld4b799b2000-08-21 14:24:30 +0000921static void
922convolve_1d_constant(GLint srcWidth, const GLfloat src[][4],
923 GLint filterWidth, const GLfloat filter[][4],
924 GLfloat dest[][4],
925 const GLfloat borderColor[4])
Brian Paulcc8e37f2000-07-12 13:00:09 +0000926{
927 const GLint halfFilterWidth = filterWidth / 2;
928 GLint i, n;
929
930 for (i = 0; i < srcWidth; i++) {
931 GLfloat sumR = 0.0;
932 GLfloat sumG = 0.0;
933 GLfloat sumB = 0.0;
934 GLfloat sumA = 0.0;
935 for (n = 0; n < filterWidth; n++) {
936 if (i + n < halfFilterWidth || i + n - halfFilterWidth >= srcWidth) {
937 sumR += borderColor[RCOMP] * filter[n][RCOMP];
938 sumG += borderColor[GCOMP] * filter[n][GCOMP];
939 sumB += borderColor[BCOMP] * filter[n][BCOMP];
940 sumA += borderColor[ACOMP] * filter[n][ACOMP];
941 }
942 else {
943 sumR += src[i + n - halfFilterWidth][RCOMP] * filter[n][RCOMP];
944 sumG += src[i + n - halfFilterWidth][GCOMP] * filter[n][GCOMP];
945 sumB += src[i + n - halfFilterWidth][BCOMP] * filter[n][BCOMP];
946 sumA += src[i + n - halfFilterWidth][ACOMP] * filter[n][ACOMP];
947 }
948 }
949 dest[i][RCOMP] = sumR;
950 dest[i][GCOMP] = sumG;
951 dest[i][BCOMP] = sumB;
952 dest[i][ACOMP] = sumA;
953 }
954}
955
956
Brian Pauld4b799b2000-08-21 14:24:30 +0000957static void
958convolve_1d_replicate(GLint srcWidth, const GLfloat src[][4],
959 GLint filterWidth, const GLfloat filter[][4],
960 GLfloat dest[][4])
Brian Paulcc8e37f2000-07-12 13:00:09 +0000961{
962 const GLint halfFilterWidth = filterWidth / 2;
963 GLint i, n;
964
965 for (i = 0; i < srcWidth; i++) {
966 GLfloat sumR = 0.0;
967 GLfloat sumG = 0.0;
968 GLfloat sumB = 0.0;
969 GLfloat sumA = 0.0;
970 for (n = 0; n < filterWidth; n++) {
971 if (i + n < halfFilterWidth) {
972 sumR += src[0][RCOMP] * filter[n][RCOMP];
973 sumG += src[0][GCOMP] * filter[n][GCOMP];
974 sumB += src[0][BCOMP] * filter[n][BCOMP];
975 sumA += src[0][ACOMP] * filter[n][ACOMP];
976 }
977 else if (i + n - halfFilterWidth >= srcWidth) {
978 sumR += src[srcWidth - 1][RCOMP] * filter[n][RCOMP];
979 sumG += src[srcWidth - 1][GCOMP] * filter[n][GCOMP];
980 sumB += src[srcWidth - 1][BCOMP] * filter[n][BCOMP];
981 sumA += src[srcWidth - 1][ACOMP] * filter[n][ACOMP];
982 }
983 else {
984 sumR += src[i + n - halfFilterWidth][RCOMP] * filter[n][RCOMP];
985 sumG += src[i + n - halfFilterWidth][GCOMP] * filter[n][GCOMP];
986 sumB += src[i + n - halfFilterWidth][BCOMP] * filter[n][BCOMP];
987 sumA += src[i + n - halfFilterWidth][ACOMP] * filter[n][ACOMP];
988 }
989 }
990 dest[i][RCOMP] = sumR;
991 dest[i][GCOMP] = sumG;
992 dest[i][BCOMP] = sumB;
993 dest[i][ACOMP] = sumA;
994 }
995}
996
997
Brian Pauld4b799b2000-08-21 14:24:30 +0000998static void
999convolve_2d_reduce(GLint srcWidth, GLint srcHeight,
1000 const GLfloat src[][4],
1001 GLint filterWidth, GLint filterHeight,
1002 const GLfloat filter[][4],
1003 GLfloat dest[][4])
Brian Paulcc8e37f2000-07-12 13:00:09 +00001004{
Brian Paul7e708742000-08-22 18:54:25 +00001005 GLint dstWidth, dstHeight;
Brian Pauld4b799b2000-08-21 14:24:30 +00001006 GLint i, j, n, m;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001007
Brian Paul7e708742000-08-22 18:54:25 +00001008 if (filterWidth >= 1)
1009 dstWidth = srcWidth - (filterWidth - 1);
1010 else
1011 dstWidth = srcWidth;
1012
1013 if (filterHeight >= 1)
1014 dstHeight = srcHeight - (filterHeight - 1);
1015 else
1016 dstHeight = srcHeight;
1017
Brian Pauld4b799b2000-08-21 14:24:30 +00001018 if (dstWidth <= 0 || dstHeight <= 0)
1019 return;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001020
Brian Pauld4b799b2000-08-21 14:24:30 +00001021 for (j = 0; j < dstHeight; j++) {
1022 for (i = 0; i < dstWidth; i++) {
1023 GLfloat sumR = 0.0;
1024 GLfloat sumG = 0.0;
1025 GLfloat sumB = 0.0;
1026 GLfloat sumA = 0.0;
1027 for (m = 0; m < filterHeight; m++) {
1028 for (n = 0; n < filterWidth; n++) {
1029 const GLint k = (j + m) * srcWidth + i + n;
1030 const GLint f = m * filterWidth + n;
1031 sumR += src[k][RCOMP] * filter[f][RCOMP];
1032 sumG += src[k][GCOMP] * filter[f][GCOMP];
1033 sumB += src[k][BCOMP] * filter[f][BCOMP];
1034 sumA += src[k][ACOMP] * filter[f][ACOMP];
1035 }
Brian Paulcc8e37f2000-07-12 13:00:09 +00001036 }
Brian Pauld4b799b2000-08-21 14:24:30 +00001037 dest[j * dstWidth + i][RCOMP] = sumR;
1038 dest[j * dstWidth + i][GCOMP] = sumG;
1039 dest[j * dstWidth + i][BCOMP] = sumB;
1040 dest[j * dstWidth + i][ACOMP] = sumA;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001041 }
Brian Paulcc8e37f2000-07-12 13:00:09 +00001042 }
1043}
1044
1045
Brian Pauld4b799b2000-08-21 14:24:30 +00001046static void
1047convolve_2d_constant(GLint srcWidth, GLint srcHeight,
1048 const GLfloat src[][4],
1049 GLint filterWidth, GLint filterHeight,
1050 const GLfloat filter[][4],
1051 GLfloat dest[][4],
1052 const GLfloat borderColor[4])
Brian Paulcc8e37f2000-07-12 13:00:09 +00001053{
1054 const GLint halfFilterWidth = filterWidth / 2;
Brian Pauld4b799b2000-08-21 14:24:30 +00001055 const GLint halfFilterHeight = filterHeight / 2;
1056 GLint i, j, n, m;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001057
Brian Pauld4b799b2000-08-21 14:24:30 +00001058 for (j = 0; j < srcHeight; j++) {
1059 for (i = 0; i < srcWidth; i++) {
1060 GLfloat sumR = 0.0;
1061 GLfloat sumG = 0.0;
1062 GLfloat sumB = 0.0;
1063 GLfloat sumA = 0.0;
1064 for (m = 0; m < filterHeight; m++) {
1065 for (n = 0; n < filterWidth; n++) {
1066 const GLint f = m * filterWidth + n;
1067 const GLint is = i + n - halfFilterWidth;
1068 const GLint js = j + m - halfFilterHeight;
1069 if (is < 0 || is >= srcWidth ||
1070 js < 0 || js >= srcHeight) {
1071 sumR += borderColor[RCOMP] * filter[f][RCOMP];
1072 sumG += borderColor[GCOMP] * filter[f][GCOMP];
1073 sumB += borderColor[BCOMP] * filter[f][BCOMP];
1074 sumA += borderColor[ACOMP] * filter[f][ACOMP];
1075 }
1076 else {
1077 const GLint k = js * srcWidth + is;
1078 sumR += src[k][RCOMP] * filter[f][RCOMP];
1079 sumG += src[k][GCOMP] * filter[f][GCOMP];
1080 sumB += src[k][BCOMP] * filter[f][BCOMP];
1081 sumA += src[k][ACOMP] * filter[f][ACOMP];
1082 }
Brian Paulcc8e37f2000-07-12 13:00:09 +00001083 }
1084 }
Brian Pauld4b799b2000-08-21 14:24:30 +00001085 dest[j * srcWidth + i][RCOMP] = sumR;
1086 dest[j * srcWidth + i][GCOMP] = sumG;
1087 dest[j * srcWidth + i][BCOMP] = sumB;
1088 dest[j * srcWidth + i][ACOMP] = sumA;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001089 }
Brian Paulcc8e37f2000-07-12 13:00:09 +00001090 }
1091}
1092
1093
Brian Pauld4b799b2000-08-21 14:24:30 +00001094static void
1095convolve_2d_replicate(GLint srcWidth, GLint srcHeight,
1096 const GLfloat src[][4],
1097 GLint filterWidth, GLint filterHeight,
1098 const GLfloat filter[][4],
1099 GLfloat dest[][4])
Brian Paulcc8e37f2000-07-12 13:00:09 +00001100{
1101 const GLint halfFilterWidth = filterWidth / 2;
Brian Pauld4b799b2000-08-21 14:24:30 +00001102 const GLint halfFilterHeight = filterHeight / 2;
1103 GLint i, j, n, m;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001104
Brian Pauld4b799b2000-08-21 14:24:30 +00001105 for (j = 0; j < srcHeight; j++) {
1106 for (i = 0; i < srcWidth; i++) {
1107 GLfloat sumR = 0.0;
1108 GLfloat sumG = 0.0;
1109 GLfloat sumB = 0.0;
1110 GLfloat sumA = 0.0;
1111 for (m = 0; m < filterHeight; m++) {
1112 for (n = 0; n < filterWidth; n++) {
1113 const GLint f = m * filterWidth + n;
1114 GLint is = i + n - halfFilterWidth;
1115 GLint js = j + m - halfFilterHeight;
1116 GLint k;
1117 if (is < 0)
1118 is = 0;
1119 else if (is >= srcWidth)
1120 is = srcWidth - 1;
1121 if (js < 0)
1122 js = 0;
1123 else if (js >= srcHeight)
1124 js = srcHeight - 1;
1125 k = js * srcWidth + is;
1126 sumR += src[k][RCOMP] * filter[f][RCOMP];
1127 sumG += src[k][GCOMP] * filter[f][GCOMP];
1128 sumB += src[k][BCOMP] * filter[f][BCOMP];
1129 sumA += src[k][ACOMP] * filter[f][ACOMP];
Brian Paulcc8e37f2000-07-12 13:00:09 +00001130 }
1131 }
Brian Pauld4b799b2000-08-21 14:24:30 +00001132 dest[j * srcWidth + i][RCOMP] = sumR;
1133 dest[j * srcWidth + i][GCOMP] = sumG;
1134 dest[j * srcWidth + i][BCOMP] = sumB;
1135 dest[j * srcWidth + i][ACOMP] = sumA;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001136 }
Brian Paulcc8e37f2000-07-12 13:00:09 +00001137 }
1138}
1139
1140
Brian Pauld4b799b2000-08-21 14:24:30 +00001141static void
1142convolve_sep_reduce(GLint srcWidth, GLint srcHeight,
1143 const GLfloat src[][4],
1144 GLint filterWidth, GLint filterHeight,
1145 const GLfloat rowFilt[][4],
1146 const GLfloat colFilt[][4],
1147 GLfloat dest[][4])
Brian Paulcc8e37f2000-07-12 13:00:09 +00001148{
Brian Paul7e708742000-08-22 18:54:25 +00001149 GLint dstWidth, dstHeight;
Brian Pauld4b799b2000-08-21 14:24:30 +00001150 GLint i, j, n, m;
Brian Paul7e708742000-08-22 18:54:25 +00001151
1152 if (filterWidth >= 1)
1153 dstWidth = srcWidth - (filterWidth - 1);
1154 else
1155 dstWidth = srcWidth;
1156
1157 if (filterHeight >= 1)
1158 dstHeight = srcHeight - (filterHeight - 1);
1159 else
1160 dstHeight = srcHeight;
1161
1162 if (dstWidth <= 0 || dstHeight <= 0)
1163 return;
1164
1165 for (j = 0; j < dstHeight; j++) {
1166 for (i = 0; i < dstWidth; i++) {
Brian Pauld4b799b2000-08-21 14:24:30 +00001167 GLfloat sumR = 0.0;
1168 GLfloat sumG = 0.0;
1169 GLfloat sumB = 0.0;
1170 GLfloat sumA = 0.0;
1171 for (m = 0; m < filterHeight; m++) {
1172 for (n = 0; n < filterWidth; n++) {
Brian Paul7e708742000-08-22 18:54:25 +00001173 GLint k = (j + m) * srcWidth + i + n;
1174 sumR += src[k][RCOMP] * rowFilt[n][RCOMP] * colFilt[m][RCOMP];
1175 sumG += src[k][GCOMP] * rowFilt[n][GCOMP] * colFilt[m][GCOMP];
1176 sumB += src[k][BCOMP] * rowFilt[n][BCOMP] * colFilt[m][BCOMP];
1177 sumA += src[k][ACOMP] * rowFilt[n][ACOMP] * colFilt[m][ACOMP];
Brian Paulcc8e37f2000-07-12 13:00:09 +00001178 }
1179 }
Brian Paul7e708742000-08-22 18:54:25 +00001180 dest[j * dstWidth + i][RCOMP] = sumR;
1181 dest[j * dstWidth + i][GCOMP] = sumG;
1182 dest[j * dstWidth + i][BCOMP] = sumB;
1183 dest[j * dstWidth + i][ACOMP] = sumA;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001184 }
Brian Paulcc8e37f2000-07-12 13:00:09 +00001185 }
Brian Paulcc8e37f2000-07-12 13:00:09 +00001186}
1187
1188
Brian Pauld4b799b2000-08-21 14:24:30 +00001189static void
1190convolve_sep_constant(GLint srcWidth, GLint srcHeight,
1191 const GLfloat src[][4],
1192 GLint filterWidth, GLint filterHeight,
1193 const GLfloat rowFilt[][4],
1194 const GLfloat colFilt[][4],
1195 GLfloat dest[][4],
1196 const GLfloat borderColor[4])
Brian Paulcc8e37f2000-07-12 13:00:09 +00001197{
1198 const GLint halfFilterWidth = filterWidth / 2;
Brian Pauld4b799b2000-08-21 14:24:30 +00001199 const GLint halfFilterHeight = filterHeight / 2;
1200 GLint i, j, n, m;
Brian Paul7e708742000-08-22 18:54:25 +00001201
Brian Pauld4b799b2000-08-21 14:24:30 +00001202 for (j = 0; j < srcHeight; j++) {
1203 for (i = 0; i < srcWidth; i++) {
1204 GLfloat sumR = 0.0;
1205 GLfloat sumG = 0.0;
1206 GLfloat sumB = 0.0;
1207 GLfloat sumA = 0.0;
1208 for (m = 0; m < filterHeight; m++) {
1209 for (n = 0; n < filterWidth; n++) {
Brian Paul7e708742000-08-22 18:54:25 +00001210 const GLint is = i + n - halfFilterWidth;
1211 const GLint js = j + m - halfFilterHeight;
1212 if (is < 0 || is >= srcWidth ||
1213 js < 0 || js >= srcHeight) {
Brian Pauld4b799b2000-08-21 14:24:30 +00001214 sumR += borderColor[RCOMP] * rowFilt[n][RCOMP] * colFilt[m][RCOMP];
1215 sumG += borderColor[GCOMP] * rowFilt[n][GCOMP] * colFilt[m][GCOMP];
1216 sumB += borderColor[BCOMP] * rowFilt[n][BCOMP] * colFilt[m][BCOMP];
1217 sumA += borderColor[ACOMP] * rowFilt[n][ACOMP] * colFilt[m][ACOMP];
1218 }
1219 else {
Brian Paul7e708742000-08-22 18:54:25 +00001220 GLint k = js * srcWidth + is;
Brian Pauld4b799b2000-08-21 14:24:30 +00001221 sumR += src[k][RCOMP] * rowFilt[n][RCOMP] * colFilt[m][RCOMP];
1222 sumG += src[k][GCOMP] * rowFilt[n][GCOMP] * colFilt[m][GCOMP];
1223 sumB += src[k][BCOMP] * rowFilt[n][BCOMP] * colFilt[m][BCOMP];
1224 sumA += src[k][ACOMP] * rowFilt[n][ACOMP] * colFilt[m][ACOMP];
1225 }
Brian Paul7e708742000-08-22 18:54:25 +00001226
Brian Paulcc8e37f2000-07-12 13:00:09 +00001227 }
1228 }
Brian Paul7e708742000-08-22 18:54:25 +00001229 dest[j * srcWidth + i][RCOMP] = sumR;
1230 dest[j * srcWidth + i][GCOMP] = sumG;
1231 dest[j * srcWidth + i][BCOMP] = sumB;
1232 dest[j * srcWidth + i][ACOMP] = sumA;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001233 }
Brian Pauld4b799b2000-08-21 14:24:30 +00001234 }
Brian Pauld4b799b2000-08-21 14:24:30 +00001235}
1236
1237
1238static void
1239convolve_sep_replicate(GLint srcWidth, GLint srcHeight,
1240 const GLfloat src[][4],
1241 GLint filterWidth, GLint filterHeight,
1242 const GLfloat rowFilt[][4],
1243 const GLfloat colFilt[][4],
1244 GLfloat dest[][4])
1245{
1246 const GLint halfFilterWidth = filterWidth / 2;
1247 const GLint halfFilterHeight = filterHeight / 2;
1248 GLint i, j, n, m;
1249
1250 for (j = 0; j < srcHeight; j++) {
1251 for (i = 0; i < srcWidth; i++) {
1252 GLfloat sumR = 0.0;
1253 GLfloat sumG = 0.0;
1254 GLfloat sumB = 0.0;
1255 GLfloat sumA = 0.0;
1256 for (m = 0; m < filterHeight; m++) {
1257 for (n = 0; n < filterWidth; n++) {
Brian Paul7e708742000-08-22 18:54:25 +00001258 GLint is = i + n - halfFilterWidth;
1259 GLint js = j + m - halfFilterHeight;
1260 GLint k;
1261 if (is < 0)
1262 is = 0;
1263 else if (is >= srcWidth)
1264 is = srcWidth - 1;
1265 if (js < 0)
1266 js = 0;
1267 else if (js >= srcHeight)
1268 js = srcHeight - 1;
1269 k = js * srcWidth + is;
1270 sumR += src[k][RCOMP] * rowFilt[n][RCOMP] * colFilt[m][RCOMP];
1271 sumG += src[k][GCOMP] * rowFilt[n][GCOMP] * colFilt[m][GCOMP];
1272 sumB += src[k][BCOMP] * rowFilt[n][BCOMP] * colFilt[m][BCOMP];
1273 sumA += src[k][ACOMP] * rowFilt[n][ACOMP] * colFilt[m][ACOMP];
Brian Pauld4b799b2000-08-21 14:24:30 +00001274 }
1275 }
Brian Paul7e708742000-08-22 18:54:25 +00001276 dest[j * srcWidth + i][RCOMP] = sumR;
1277 dest[j * srcWidth + i][GCOMP] = sumG;
1278 dest[j * srcWidth + i][BCOMP] = sumB;
1279 dest[j * srcWidth + i][ACOMP] = sumA;
Brian Pauld4b799b2000-08-21 14:24:30 +00001280 }
1281 }
1282}
1283
1284
1285
1286void
1287_mesa_convolve_1d_image(const GLcontext *ctx, GLsizei *width,
1288 const GLfloat *srcImage, GLfloat *dstImage)
1289{
1290 switch (ctx->Pixel.ConvolutionBorderMode[0]) {
1291 case GL_REDUCE:
1292 convolve_1d_reduce(*width, (const GLfloat (*)[4]) srcImage,
1293 ctx->Convolution1D.Width,
1294 (const GLfloat (*)[4]) ctx->Convolution1D.Filter,
1295 (GLfloat (*)[4]) dstImage);
Brian Paul7e708742000-08-22 18:54:25 +00001296 *width = *width - (MAX2(ctx->Convolution1D.Width, 1) - 1);
Brian Pauld4b799b2000-08-21 14:24:30 +00001297 break;
1298 case GL_CONSTANT_BORDER:
1299 convolve_1d_constant(*width, (const GLfloat (*)[4]) srcImage,
1300 ctx->Convolution1D.Width,
1301 (const GLfloat (*)[4]) ctx->Convolution1D.Filter,
1302 (GLfloat (*)[4]) dstImage,
1303 ctx->Pixel.ConvolutionBorderColor[0]);
1304 break;
1305 case GL_REPLICATE_BORDER:
1306 convolve_1d_replicate(*width, (const GLfloat (*)[4]) srcImage,
1307 ctx->Convolution1D.Width,
1308 (const GLfloat (*)[4]) ctx->Convolution1D.Filter,
1309 (GLfloat (*)[4]) dstImage);
1310 break;
1311 default:
1312 ;
1313 }
1314}
1315
1316
1317void
1318_mesa_convolve_2d_image(const GLcontext *ctx, GLsizei *width, GLsizei *height,
1319 const GLfloat *srcImage, GLfloat *dstImage)
1320{
1321 switch (ctx->Pixel.ConvolutionBorderMode[1]) {
1322 case GL_REDUCE:
1323 convolve_2d_reduce(*width, *height,
1324 (const GLfloat (*)[4]) srcImage,
1325 ctx->Convolution2D.Width,
1326 ctx->Convolution2D.Height,
1327 (const GLfloat (*)[4]) ctx->Convolution2D.Filter,
1328 (GLfloat (*)[4]) dstImage);
Brian Paul7e708742000-08-22 18:54:25 +00001329 *width = *width - (MAX2(ctx->Convolution2D.Width, 1) - 1);
1330 *height = *height - (MAX2(ctx->Convolution2D.Height, 1) - 1);
Brian Pauld4b799b2000-08-21 14:24:30 +00001331 break;
1332 case GL_CONSTANT_BORDER:
1333 convolve_2d_constant(*width, *height,
1334 (const GLfloat (*)[4]) srcImage,
1335 ctx->Convolution2D.Width,
1336 ctx->Convolution2D.Height,
1337 (const GLfloat (*)[4]) ctx->Convolution2D.Filter,
1338 (GLfloat (*)[4]) dstImage,
1339 ctx->Pixel.ConvolutionBorderColor[1]);
1340 break;
1341 case GL_REPLICATE_BORDER:
1342 convolve_2d_replicate(*width, *height,
1343 (const GLfloat (*)[4]) srcImage,
1344 ctx->Convolution2D.Width,
1345 ctx->Convolution2D.Height,
1346 (const GLfloat (*)[4])ctx->Convolution2D.Filter,
1347 (GLfloat (*)[4]) dstImage);
1348 break;
1349 default:
1350 ;
1351 }
1352}
1353
1354
1355void
1356_mesa_convolve_sep_image(const GLcontext *ctx,
1357 GLsizei *width, GLsizei *height,
1358 const GLfloat *srcImage, GLfloat *dstImage)
1359{
1360 const GLfloat *rowFilter = ctx->Separable2D.Filter;
1361 const GLfloat *colFilter = rowFilter + 4 * MAX_CONVOLUTION_WIDTH;
1362
1363 switch (ctx->Pixel.ConvolutionBorderMode[2]) {
1364 case GL_REDUCE:
1365 convolve_sep_reduce(*width, *height,
1366 (const GLfloat (*)[4]) srcImage,
Brian Paul7e708742000-08-22 18:54:25 +00001367 ctx->Separable2D.Width,
1368 ctx->Separable2D.Height,
Brian Pauld4b799b2000-08-21 14:24:30 +00001369 (const GLfloat (*)[4]) rowFilter,
1370 (const GLfloat (*)[4]) colFilter,
1371 (GLfloat (*)[4]) dstImage);
Brian Paul7e708742000-08-22 18:54:25 +00001372 *width = *width - (MAX2(ctx->Separable2D.Width, 1) - 1);
1373 *height = *height - (MAX2(ctx->Separable2D.Height, 1) - 1);
Brian Pauld4b799b2000-08-21 14:24:30 +00001374 break;
1375 case GL_CONSTANT_BORDER:
1376 convolve_sep_constant(*width, *height,
1377 (const GLfloat (*)[4]) srcImage,
Brian Paul7e708742000-08-22 18:54:25 +00001378 ctx->Separable2D.Width,
1379 ctx->Separable2D.Height,
Brian Pauld4b799b2000-08-21 14:24:30 +00001380 (const GLfloat (*)[4]) rowFilter,
1381 (const GLfloat (*)[4]) colFilter,
1382 (GLfloat (*)[4]) dstImage,
1383 ctx->Pixel.ConvolutionBorderColor[2]);
1384 break;
1385 case GL_REPLICATE_BORDER:
1386 convolve_sep_replicate(*width, *height,
1387 (const GLfloat (*)[4]) srcImage,
Brian Paul7e708742000-08-22 18:54:25 +00001388 ctx->Separable2D.Width,
1389 ctx->Separable2D.Height,
Brian Pauld4b799b2000-08-21 14:24:30 +00001390 (const GLfloat (*)[4]) rowFilter,
1391 (const GLfloat (*)[4]) colFilter,
1392 (GLfloat (*)[4]) dstImage);
1393 break;
1394 default:
1395 ;
Brian Paulcc8e37f2000-07-12 13:00:09 +00001396 }
1397}
Brian Paul16461f72001-02-06 17:22:16 +00001398
1399
1400
1401/*
1402 * This function computes an image's size after convolution.
1403 * If the convolution border mode is GL_REDUCE, the post-convolution
1404 * image will be smaller than the original.
1405 */
1406void
1407_mesa_adjust_image_for_convolution(const GLcontext *ctx, GLuint dimensions,
1408 GLsizei *width, GLsizei *height)
1409{
1410 if (ctx->Pixel.Convolution1DEnabled
1411 && dimensions == 1
1412 && ctx->Pixel.ConvolutionBorderMode[0] == GL_REDUCE) {
1413 *width = *width - (MAX2(ctx->Convolution1D.Width, 1) - 1);
1414 }
1415 else if (ctx->Pixel.Convolution2DEnabled
1416 && dimensions > 1
1417 && ctx->Pixel.ConvolutionBorderMode[1] == GL_REDUCE) {
1418 *width = *width - (MAX2(ctx->Convolution2D.Width, 1) - 1);
1419 *height = *height - (MAX2(ctx->Convolution2D.Height, 1) - 1);
1420 }
1421 else if (ctx->Pixel.Separable2DEnabled
1422 && dimensions > 1
1423 && ctx->Pixel.ConvolutionBorderMode[2] == GL_REDUCE) {
1424 *width = *width - (MAX2(ctx->Separable2D.Width, 1) - 1);
1425 *height = *height - (MAX2(ctx->Separable2D.Height, 1) - 1);
1426 }
1427}