fixed conformance problems in min/max and histogram result packing
[mesa.git] / src / mesa / main / histogram.c
1 /* $Id: histogram.c,v 1.4 2000/12/13 23:13:45 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.5
6 *
7 * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28 #ifdef PC_HEADER
29 #include "all.h"
30 #else
31 #include "glheader.h"
32 #include "colormac.h"
33 #include "context.h"
34 #include "image.h"
35 #include "histogram.h"
36 #include "mmath.h"
37 #endif
38
39
40 /*
41 * XXX the packed pixel formats haven't been tested.
42 */
43 static void
44 pack_histogram( GLcontext *ctx,
45 GLuint n, CONST GLuint rgba[][4],
46 GLenum format, GLenum type, GLvoid *destination,
47 const struct gl_pixelstore_attrib *packing )
48 {
49 const GLint comps = _mesa_components_in_format(format);
50 GLuint luminance[MAX_WIDTH];
51
52 if (format == GL_LUMINANCE || format == GL_LUMINANCE_ALPHA) {
53 GLuint i;
54 for (i = 0; i < n; i++) {
55 luminance[i] = rgba[i][RCOMP] + rgba[i][GCOMP] + rgba[i][BCOMP];
56 }
57 }
58
59 #define PACK_MACRO(TYPE) \
60 { \
61 GLuint i; \
62 switch (format) { \
63 case GL_RED: \
64 for (i=0;i<n;i++) \
65 dst[i] = (TYPE) rgba[i][RCOMP]; \
66 break; \
67 case GL_GREEN: \
68 for (i=0;i<n;i++) \
69 dst[i] = (TYPE) rgba[i][GCOMP]; \
70 break; \
71 case GL_BLUE: \
72 for (i=0;i<n;i++) \
73 dst[i] = (TYPE) rgba[i][BCOMP]; \
74 break; \
75 case GL_ALPHA: \
76 for (i=0;i<n;i++) \
77 dst[i] = (TYPE) rgba[i][ACOMP]; \
78 break; \
79 case GL_LUMINANCE: \
80 for (i=0;i<n;i++) \
81 dst[i] = (TYPE) luminance[i]; \
82 break; \
83 case GL_LUMINANCE_ALPHA: \
84 for (i=0;i<n;i++) { \
85 dst[i*2+0] = (TYPE) luminance[i]; \
86 dst[i*2+1] = (TYPE) rgba[i][ACOMP]; \
87 } \
88 break; \
89 case GL_RGB: \
90 for (i=0;i<n;i++) { \
91 dst[i*3+0] = (TYPE) rgba[i][RCOMP]; \
92 dst[i*3+1] = (TYPE) rgba[i][GCOMP]; \
93 dst[i*3+2] = (TYPE) rgba[i][BCOMP]; \
94 } \
95 break; \
96 case GL_RGBA: \
97 for (i=0;i<n;i++) { \
98 dst[i*4+0] = (TYPE) rgba[i][RCOMP]; \
99 dst[i*4+1] = (TYPE) rgba[i][GCOMP]; \
100 dst[i*4+2] = (TYPE) rgba[i][BCOMP]; \
101 dst[i*4+3] = (TYPE) rgba[i][ACOMP]; \
102 } \
103 break; \
104 case GL_BGR: \
105 for (i=0;i<n;i++) { \
106 dst[i*3+0] = (TYPE) rgba[i][BCOMP]; \
107 dst[i*3+1] = (TYPE) rgba[i][GCOMP]; \
108 dst[i*3+2] = (TYPE) rgba[i][RCOMP]; \
109 } \
110 break; \
111 case GL_BGRA: \
112 for (i=0;i<n;i++) { \
113 dst[i*4+0] = (TYPE) rgba[i][BCOMP]; \
114 dst[i*4+1] = (TYPE) rgba[i][GCOMP]; \
115 dst[i*4+2] = (TYPE) rgba[i][RCOMP]; \
116 dst[i*4+3] = (TYPE) rgba[i][ACOMP]; \
117 } \
118 break; \
119 case GL_ABGR_EXT: \
120 for (i=0;i<n;i++) { \
121 dst[i*4+0] = (TYPE) rgba[i][ACOMP]; \
122 dst[i*4+1] = (TYPE) rgba[i][BCOMP]; \
123 dst[i*4+2] = (TYPE) rgba[i][GCOMP]; \
124 dst[i*4+3] = (TYPE) rgba[i][RCOMP]; \
125 } \
126 break; \
127 default: \
128 gl_problem(ctx, "bad format in pack_histogram"); \
129 } \
130 }
131
132 switch (type) {
133 case GL_UNSIGNED_BYTE:
134 {
135 GLubyte *dst = (GLubyte *) destination;
136 PACK_MACRO(GLubyte);
137 }
138 break;
139 case GL_BYTE:
140 {
141 GLbyte *dst = (GLbyte *) destination;
142 PACK_MACRO(GLbyte);
143 }
144 break;
145 case GL_UNSIGNED_SHORT:
146 {
147 GLushort *dst = (GLushort *) destination;
148 PACK_MACRO(GLushort);
149 if (packing->SwapBytes) {
150 _mesa_swap2(dst, n * comps);
151 }
152 }
153 break;
154 case GL_SHORT:
155 {
156 GLshort *dst = (GLshort *) destination;
157 PACK_MACRO(GLshort);
158 if (packing->SwapBytes) {
159 _mesa_swap2((GLushort *) dst, n * comps);
160 }
161 }
162 break;
163 case GL_UNSIGNED_INT:
164 {
165 GLuint *dst = (GLuint *) destination;
166 PACK_MACRO(GLuint);
167 if (packing->SwapBytes) {
168 _mesa_swap4(dst, n * comps);
169 }
170 }
171 break;
172 case GL_INT:
173 {
174 GLint *dst = (GLint *) destination;
175 PACK_MACRO(GLint);
176 if (packing->SwapBytes) {
177 _mesa_swap4((GLuint *) dst, n * comps);
178 }
179 }
180 break;
181 case GL_FLOAT:
182 {
183 GLfloat *dst = (GLfloat *) destination;
184 PACK_MACRO(GLfloat);
185 if (packing->SwapBytes) {
186 _mesa_swap4((GLuint *) dst, n * comps);
187 }
188 }
189 break;
190 case GL_UNSIGNED_BYTE_3_3_2:
191 if (format == GL_RGB) {
192 GLubyte *dst = (GLubyte *) destination;
193 GLuint i;
194 for (i = 0; i < n; i++) {
195 dst[i] = ((rgba[i][RCOMP] & 0x7) << 5)
196 | ((rgba[i][GCOMP] & 0x7) << 2)
197 | ((rgba[i][BCOMP] & 0x3) );
198 }
199 }
200 else {
201 GLubyte *dst = (GLubyte *) destination;
202 GLuint i;
203 ASSERT(format == GL_BGR);
204 for (i = 0; i < n; i++) {
205 dst[i] = ((rgba[i][BCOMP] & 0x7) << 5)
206 | ((rgba[i][GCOMP] & 0x7) << 2)
207 | ((rgba[i][RCOMP] & 0x3) );
208 }
209 }
210 break;
211 case GL_UNSIGNED_BYTE_2_3_3_REV:
212 if (format == GL_RGB) {
213 GLubyte *dst = (GLubyte *) destination;
214 GLuint i;
215 for (i = 0; i < n; i++) {
216 dst[i] = ((rgba[i][RCOMP] & 0x3) << 6)
217 | ((rgba[i][GCOMP] & 0x7) << 3)
218 | ((rgba[i][BCOMP] & 0x7) );
219 }
220 }
221 else {
222 GLubyte *dst = (GLubyte *) destination;
223 GLuint i;
224 ASSERT(format == GL_BGR);
225 for (i = 0; i < n; i++) {
226 dst[i] = ((rgba[i][BCOMP] & 0x3) << 6)
227 | ((rgba[i][GCOMP] & 0x7) << 3)
228 | ((rgba[i][RCOMP] & 0x7) );
229 }
230 }
231 break;
232 case GL_UNSIGNED_SHORT_5_6_5:
233 if (format == GL_RGB) {
234 GLushort *dst = (GLushort *) destination;
235 GLuint i;
236 for (i = 0; i < n; i++) {
237 dst[i] = ((rgba[i][RCOMP] & 0x1f) << 11)
238 | ((rgba[i][GCOMP] & 0x3f) << 5)
239 | ((rgba[i][BCOMP] & 0x1f) );
240 }
241 }
242 else {
243 GLushort *dst = (GLushort *) destination;
244 GLuint i;
245 ASSERT(format == GL_BGR);
246 for (i = 0; i < n; i++) {
247 dst[i] = ((rgba[i][BCOMP] & 0x1f) << 11)
248 | ((rgba[i][GCOMP] & 0x3f) << 5)
249 | ((rgba[i][RCOMP] & 0x1f) );
250 }
251 }
252 break;
253 case GL_UNSIGNED_SHORT_5_6_5_REV:
254 if (format == GL_RGB) {
255 GLushort *dst = (GLushort *) destination;
256 GLuint i;
257 for (i = 0; i < n; i++) {
258 dst[i] = ((rgba[i][BCOMP] & 0x1f) << 11)
259 | ((rgba[i][GCOMP] & 0x3f) << 5)
260 | ((rgba[i][RCOMP] & 0x1f) );
261 }
262 }
263 else {
264 GLushort *dst = (GLushort *) destination;
265 GLuint i;
266 ASSERT(format == GL_BGR);
267 for (i = 0; i < n; i++) {
268 dst[i] = ((rgba[i][RCOMP] & 0x1f) << 11)
269 | ((rgba[i][GCOMP] & 0x3f) << 5)
270 | ((rgba[i][BCOMP] & 0x1f) );
271 }
272 }
273 break;
274 case GL_UNSIGNED_SHORT_4_4_4_4:
275 if (format == GL_RGBA) {
276 GLushort *dst = (GLushort *) destination;
277 GLuint i;
278 for (i = 0; i < n; i++) {
279 dst[i] = ((rgba[i][RCOMP] & 0xf) << 12)
280 | ((rgba[i][GCOMP] & 0xf) << 8)
281 | ((rgba[i][BCOMP] & 0xf) << 4)
282 | ((rgba[i][ACOMP] & 0xf) );
283 }
284 }
285 else if (format == GL_BGRA) {
286 GLushort *dst = (GLushort *) destination;
287 GLuint i;
288 for (i = 0; i < n; i++) {
289 dst[i] = ((rgba[i][BCOMP] & 0xf) << 12)
290 | ((rgba[i][GCOMP] & 0xf) << 8)
291 | ((rgba[i][RCOMP] & 0xf) << 4)
292 | ((rgba[i][ACOMP] & 0xf) );
293 }
294 }
295 else {
296 GLushort *dst = (GLushort *) destination;
297 GLuint i;
298 ASSERT(format == GL_ABGR_EXT);
299 for (i = 0; i < n; i++) {
300 dst[i] = ((rgba[i][ACOMP] & 0xf) << 12)
301 | ((rgba[i][BCOMP] & 0xf) << 8)
302 | ((rgba[i][GCOMP] & 0xf) << 4)
303 | ((rgba[i][RCOMP] & 0xf) );
304 }
305 }
306 break;
307 case GL_UNSIGNED_SHORT_4_4_4_4_REV:
308 if (format == GL_RGBA) {
309 GLushort *dst = (GLushort *) destination;
310 GLuint i;
311 for (i = 0; i < n; i++) {
312 dst[i] = ((rgba[i][ACOMP] & 0xf) << 12)
313 | ((rgba[i][BCOMP] & 0xf) << 8)
314 | ((rgba[i][GCOMP] & 0xf) << 4)
315 | ((rgba[i][RCOMP] & 0xf) );
316 }
317 }
318 else if (format == GL_BGRA) {
319 GLushort *dst = (GLushort *) destination;
320 GLuint i;
321 for (i = 0; i < n; i++) {
322 dst[i] = ((rgba[i][ACOMP] & 0xf) << 12)
323 | ((rgba[i][RCOMP] & 0xf) << 8)
324 | ((rgba[i][GCOMP] & 0xf) << 4)
325 | ((rgba[i][BCOMP] & 0xf) );
326 }
327 }
328 else {
329 GLushort *dst = (GLushort *) destination;
330 GLuint i;
331 ASSERT(format == GL_ABGR_EXT);
332 for (i = 0; i < n; i++) {
333 dst[i] = ((rgba[i][RCOMP] & 0xf) << 12)
334 | ((rgba[i][GCOMP] & 0xf) << 8)
335 | ((rgba[i][BCOMP] & 0xf) << 4)
336 | ((rgba[i][ACOMP] & 0xf) );
337 }
338 }
339 break;
340 case GL_UNSIGNED_SHORT_5_5_5_1:
341 if (format == GL_RGBA) {
342 GLushort *dst = (GLushort *) destination;
343 GLuint i;
344 for (i = 0; i < n; i++) {
345 dst[i] = ((rgba[i][RCOMP] & 0x1f) << 11)
346 | ((rgba[i][GCOMP] & 0x1f) << 6)
347 | ((rgba[i][BCOMP] & 0x1f) << 1)
348 | ((rgba[i][ACOMP] & 0x1) );
349 }
350 }
351 else if (format == GL_BGRA) {
352 GLushort *dst = (GLushort *) destination;
353 GLuint i;
354 for (i = 0; i < n; i++) {
355 dst[i] = ((rgba[i][BCOMP] & 0x1f) << 11)
356 | ((rgba[i][GCOMP] & 0x1f) << 6)
357 | ((rgba[i][RCOMP] & 0x1f) << 1)
358 | ((rgba[i][ACOMP] & 0x1) );
359 }
360 }
361 else {
362 GLushort *dst = (GLushort *) destination;
363 GLuint i;
364 ASSERT(format == GL_ABGR_EXT);
365 for (i = 0; i < n; i++) {
366 dst[i] = ((rgba[i][ACOMP] & 0x1f) << 11)
367 | ((rgba[i][BCOMP] & 0x1f) << 6)
368 | ((rgba[i][GCOMP] & 0x1f) << 1)
369 | ((rgba[i][RCOMP] & 0x1) );
370 }
371 }
372 break;
373 case GL_UNSIGNED_SHORT_1_5_5_5_REV:
374 if (format == GL_RGBA) {
375 GLushort *dst = (GLushort *) destination;
376 GLuint i;
377 for (i = 0; i < n; i++) {
378 dst[i] = ((rgba[i][ACOMP] & 0x1f) << 11)
379 | ((rgba[i][BCOMP] & 0x1f) << 6)
380 | ((rgba[i][GCOMP] & 0x1f) << 1)
381 | ((rgba[i][RCOMP] & 0x1) );
382 }
383 }
384 else if (format == GL_BGRA) {
385 GLushort *dst = (GLushort *) destination;
386 GLuint i;
387 for (i = 0; i < n; i++) {
388 dst[i] = ((rgba[i][ACOMP] & 0x1f) << 11)
389 | ((rgba[i][RCOMP] & 0x1f) << 6)
390 | ((rgba[i][GCOMP] & 0x1f) << 1)
391 | ((rgba[i][BCOMP] & 0x1) );
392 }
393 }
394 else {
395 GLushort *dst = (GLushort *) destination;
396 GLuint i;
397 ASSERT(format == GL_ABGR_EXT);
398 for (i = 0; i < n; i++) {
399 dst[i] = ((rgba[i][RCOMP] & 0x1f) << 11)
400 | ((rgba[i][GCOMP] & 0x1f) << 6)
401 | ((rgba[i][BCOMP] & 0x1f) << 1)
402 | ((rgba[i][ACOMP] & 0x1) );
403 }
404 }
405 break;
406 case GL_UNSIGNED_INT_8_8_8_8:
407 if (format == GL_RGBA) {
408 GLuint *dst = (GLuint *) destination;
409 GLuint i;
410 for (i = 0; i < n; i++) {
411 dst[i] = ((rgba[i][RCOMP] & 0xff) << 24)
412 | ((rgba[i][GCOMP] & 0xff) << 16)
413 | ((rgba[i][BCOMP] & 0xff) << 8)
414 | ((rgba[i][ACOMP] & 0xff) );
415 }
416 }
417 else if (format == GL_BGRA) {
418 GLuint *dst = (GLuint *) destination;
419 GLuint i;
420 for (i = 0; i < n; i++) {
421 dst[i] = ((rgba[i][BCOMP] & 0xff) << 24)
422 | ((rgba[i][GCOMP] & 0xff) << 16)
423 | ((rgba[i][RCOMP] & 0xff) << 8)
424 | ((rgba[i][ACOMP] & 0xff) );
425 }
426 }
427 else {
428 GLuint *dst = (GLuint *) destination;
429 GLuint i;
430 ASSERT(format == GL_ABGR_EXT);
431 for (i = 0; i < n; i++) {
432 dst[i] = ((rgba[i][ACOMP] & 0xff) << 24)
433 | ((rgba[i][BCOMP] & 0xff) << 16)
434 | ((rgba[i][GCOMP] & 0xff) << 8)
435 | ((rgba[i][RCOMP] & 0xff) );
436 }
437 }
438 break;
439 case GL_UNSIGNED_INT_8_8_8_8_REV:
440 if (format == GL_RGBA) {
441 GLuint *dst = (GLuint *) destination;
442 GLuint i;
443 for (i = 0; i < n; i++) {
444 dst[i] = ((rgba[i][ACOMP] & 0xff) << 24)
445 | ((rgba[i][BCOMP] & 0xff) << 16)
446 | ((rgba[i][GCOMP] & 0xff) << 8)
447 | ((rgba[i][RCOMP] & 0xff) );
448 }
449 }
450 else if (format == GL_BGRA) {
451 GLuint *dst = (GLuint *) destination;
452 GLuint i;
453 for (i = 0; i < n; i++) {
454 dst[i] = ((rgba[i][ACOMP] & 0xff) << 24)
455 | ((rgba[i][RCOMP] & 0xff) << 16)
456 | ((rgba[i][GCOMP] & 0xff) << 8)
457 | ((rgba[i][BCOMP] & 0xff) );
458 }
459 }
460 else {
461 GLuint *dst = (GLuint *) destination;
462 GLuint i;
463 ASSERT(format == GL_ABGR_EXT);
464 for (i = 0; i < n; i++) {
465 dst[i] = ((rgba[i][RCOMP] & 0xff) << 24)
466 | ((rgba[i][GCOMP] & 0xff) << 16)
467 | ((rgba[i][BCOMP] & 0xff) << 8)
468 | ((rgba[i][ACOMP] & 0xff) );
469 }
470 }
471 break;
472 case GL_UNSIGNED_INT_10_10_10_2:
473 if (format == GL_RGBA) {
474 GLuint *dst = (GLuint *) destination;
475 GLuint i;
476 for (i = 0; i < n; i++) {
477 dst[i] = ((rgba[i][RCOMP] & 0x3ff) << 22)
478 | ((rgba[i][GCOMP] & 0x3ff) << 12)
479 | ((rgba[i][BCOMP] & 0x3ff) << 2)
480 | ((rgba[i][ACOMP] & 0x3) );
481 }
482 }
483 else if (format == GL_BGRA) {
484 GLuint *dst = (GLuint *) destination;
485 GLuint i;
486 for (i = 0; i < n; i++) {
487 dst[i] = ((rgba[i][BCOMP] & 0x3ff) << 22)
488 | ((rgba[i][GCOMP] & 0x3ff) << 12)
489 | ((rgba[i][RCOMP] & 0x3ff) << 2)
490 | ((rgba[i][ACOMP] & 0x3) );
491 }
492 }
493 else {
494 GLuint *dst = (GLuint *) destination;
495 GLuint i;
496 ASSERT(format == GL_ABGR_EXT);
497 for (i = 0; i < n; i++) {
498 dst[i] = ((rgba[i][ACOMP] & 0x3ff) << 22)
499 | ((rgba[i][BCOMP] & 0x3ff) << 12)
500 | ((rgba[i][GCOMP] & 0x3ff) << 2)
501 | ((rgba[i][RCOMP] & 0x3) );
502 }
503 }
504 break;
505 case GL_UNSIGNED_INT_2_10_10_10_REV:
506 if (format == GL_RGBA) {
507 GLuint *dst = (GLuint *) destination;
508 GLuint i;
509 for (i = 0; i < n; i++) {
510 dst[i] = ((rgba[i][ACOMP] & 0x3ff) << 22)
511 | ((rgba[i][BCOMP] & 0x3ff) << 12)
512 | ((rgba[i][GCOMP] & 0x3ff) << 2)
513 | ((rgba[i][RCOMP] & 0x3) );
514 }
515 }
516 else if (format == GL_BGRA) {
517 GLuint *dst = (GLuint *) destination;
518 GLuint i;
519 for (i = 0; i < n; i++) {
520 dst[i] = ((rgba[i][ACOMP] & 0x3ff) << 22)
521 | ((rgba[i][RCOMP] & 0x3ff) << 12)
522 | ((rgba[i][GCOMP] & 0x3ff) << 2)
523 | ((rgba[i][BCOMP] & 0x3) );
524 }
525 }
526 else {
527 GLuint *dst = (GLuint *) destination;
528 GLuint i;
529 ASSERT(format == GL_ABGR_EXT);
530 for (i = 0; i < n; i++) {
531 dst[i] = ((rgba[i][RCOMP] & 0x3ff) << 22)
532 | ((rgba[i][GCOMP] & 0x3ff) << 12)
533 | ((rgba[i][BCOMP] & 0x3ff) << 2)
534 | ((rgba[i][ACOMP] & 0x3) );
535 }
536 }
537 break;
538 default:
539 gl_problem(ctx, "Bad type in pack_histogram");
540 }
541
542 #undef PACK_MACRO
543 }
544
545
546 /*
547 * Given an internalFormat token passed to glHistogram or glMinMax,
548 * return the corresponding base format.
549 * Return -1 if invalid token.
550 */
551 static GLint
552 base_histogram_format( GLenum format )
553 {
554 switch (format) {
555 case GL_ALPHA:
556 case GL_ALPHA4:
557 case GL_ALPHA8:
558 case GL_ALPHA12:
559 case GL_ALPHA16:
560 return GL_ALPHA;
561 case GL_LUMINANCE:
562 case GL_LUMINANCE4:
563 case GL_LUMINANCE8:
564 case GL_LUMINANCE12:
565 case GL_LUMINANCE16:
566 return GL_LUMINANCE;
567 case GL_LUMINANCE_ALPHA:
568 case GL_LUMINANCE4_ALPHA4:
569 case GL_LUMINANCE6_ALPHA2:
570 case GL_LUMINANCE8_ALPHA8:
571 case GL_LUMINANCE12_ALPHA4:
572 case GL_LUMINANCE12_ALPHA12:
573 case GL_LUMINANCE16_ALPHA16:
574 return GL_LUMINANCE_ALPHA;
575 case GL_RGB:
576 case GL_R3_G3_B2:
577 case GL_RGB4:
578 case GL_RGB5:
579 case GL_RGB8:
580 case GL_RGB10:
581 case GL_RGB12:
582 case GL_RGB16:
583 return GL_RGB;
584 case GL_RGBA:
585 case GL_RGBA2:
586 case GL_RGBA4:
587 case GL_RGB5_A1:
588 case GL_RGBA8:
589 case GL_RGB10_A2:
590 case GL_RGBA12:
591 case GL_RGBA16:
592 return GL_RGBA;
593 default:
594 return -1; /* error */
595 }
596 }
597
598
599 void
600 _mesa_GetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
601 {
602 GET_CURRENT_CONTEXT(ctx);
603 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetMinmax");
604
605 if (!ctx->Extensions.EXT_histogram) {
606 gl_error(ctx, GL_INVALID_OPERATION, "glGetMinmax");
607 return;
608 }
609
610 if (target != GL_MINMAX) {
611 gl_error(ctx, GL_INVALID_ENUM, "glGetMinmax(target)");
612 return;
613 }
614
615 if (!_mesa_is_legal_format_and_type(format, type)) {
616 gl_error(ctx, GL_INVALID_OPERATION, "glGetMinmax(format or type)");
617 return;
618 }
619
620 if (!values)
621 return;
622
623 {
624 GLfloat minmax[2][4];
625 minmax[0][RCOMP] = CLAMP(ctx->MinMax.Min[RCOMP], 0.0F, 1.0F);
626 minmax[0][GCOMP] = CLAMP(ctx->MinMax.Min[GCOMP], 0.0F, 1.0F);
627 minmax[0][BCOMP] = CLAMP(ctx->MinMax.Min[BCOMP], 0.0F, 1.0F);
628 minmax[0][ACOMP] = CLAMP(ctx->MinMax.Min[ACOMP], 0.0F, 1.0F);
629 minmax[1][RCOMP] = CLAMP(ctx->MinMax.Max[RCOMP], 0.0F, 1.0F);
630 minmax[1][GCOMP] = CLAMP(ctx->MinMax.Max[GCOMP], 0.0F, 1.0F);
631 minmax[1][BCOMP] = CLAMP(ctx->MinMax.Max[BCOMP], 0.0F, 1.0F);
632 minmax[1][ACOMP] = CLAMP(ctx->MinMax.Max[ACOMP], 0.0F, 1.0F);
633 _mesa_pack_float_rgba_span(ctx, 2, (CONST GLfloat (*)[4]) minmax,
634 format, type, values, &ctx->Pack, 0);
635 }
636
637 if (reset) {
638 _mesa_ResetMinmax(GL_MINMAX);
639 }
640 }
641
642
643 void
644 _mesa_GetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
645 {
646 GET_CURRENT_CONTEXT(ctx);
647 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetHistogram");
648
649 if (!ctx->Extensions.EXT_histogram) {
650 gl_error(ctx, GL_INVALID_OPERATION, "glGetHistogram");
651 return;
652 }
653
654 if (target != GL_HISTOGRAM) {
655 gl_error(ctx, GL_INVALID_ENUM, "glGetHistogram(target)");
656 return;
657 }
658
659 if (!_mesa_is_legal_format_and_type(format, type)) {
660 gl_error(ctx, GL_INVALID_OPERATION, "glGetHistogram(format or type)");
661 return;
662 }
663
664 if (!values)
665 return;
666
667 pack_histogram(ctx, ctx->Histogram.Width,
668 (CONST GLuint (*)[4]) ctx->Histogram.Count,
669 format, type, values, &ctx->Pack);
670
671 if (reset) {
672 GLuint i;
673 for (i = 0; i < HISTOGRAM_TABLE_SIZE; i++) {
674 ctx->Histogram.Count[i][0] = 0;
675 ctx->Histogram.Count[i][1] = 0;
676 ctx->Histogram.Count[i][2] = 0;
677 ctx->Histogram.Count[i][3] = 0;
678 }
679 }
680 }
681
682
683 void
684 _mesa_GetHistogramParameterfv(GLenum target, GLenum pname, GLfloat *params)
685 {
686 GET_CURRENT_CONTEXT(ctx);
687 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetHistogramParameterfv");
688
689 if (!ctx->Extensions.EXT_histogram) {
690 gl_error(ctx, GL_INVALID_OPERATION, "glGetHistogramParameterfv");
691 return;
692 }
693
694 if (target != GL_HISTOGRAM && target != GL_PROXY_HISTOGRAM) {
695 gl_error(ctx, GL_INVALID_ENUM, "glGetHistogramParameterfv(target)");
696 return;
697 }
698
699 switch (pname) {
700 case GL_HISTOGRAM_WIDTH:
701 *params = (GLfloat) ctx->Histogram.Width;
702 break;
703 case GL_HISTOGRAM_FORMAT:
704 *params = (GLfloat) ctx->Histogram.Format;
705 break;
706 case GL_HISTOGRAM_RED_SIZE:
707 *params = (GLfloat) ctx->Histogram.RedSize;
708 break;
709 case GL_HISTOGRAM_GREEN_SIZE:
710 *params = (GLfloat) ctx->Histogram.GreenSize;
711 break;
712 case GL_HISTOGRAM_BLUE_SIZE:
713 *params = (GLfloat) ctx->Histogram.BlueSize;
714 break;
715 case GL_HISTOGRAM_ALPHA_SIZE:
716 *params = (GLfloat) ctx->Histogram.AlphaSize;
717 break;
718 case GL_HISTOGRAM_LUMINANCE_SIZE:
719 *params = (GLfloat) ctx->Histogram.LuminanceSize;
720 break;
721 case GL_HISTOGRAM_SINK:
722 *params = (GLfloat) ctx->Histogram.Sink;
723 break;
724 default:
725 gl_error(ctx, GL_INVALID_ENUM, "glGetHistogramParameterfv(pname)");
726 }
727 }
728
729
730 void
731 _mesa_GetHistogramParameteriv(GLenum target, GLenum pname, GLint *params)
732 {
733 GET_CURRENT_CONTEXT(ctx);
734 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetHistogramParameteriv");
735
736 if (!ctx->Extensions.EXT_histogram) {
737 gl_error(ctx, GL_INVALID_OPERATION, "glGetHistogramParameteriv");
738 return;
739 }
740
741 if (target != GL_HISTOGRAM && target != GL_PROXY_HISTOGRAM) {
742 gl_error(ctx, GL_INVALID_ENUM, "glGetHistogramParameteriv(target)");
743 return;
744 }
745
746 switch (pname) {
747 case GL_HISTOGRAM_WIDTH:
748 *params = (GLint) ctx->Histogram.Width;
749 break;
750 case GL_HISTOGRAM_FORMAT:
751 *params = (GLint) ctx->Histogram.Format;
752 break;
753 case GL_HISTOGRAM_RED_SIZE:
754 *params = (GLint) ctx->Histogram.RedSize;
755 break;
756 case GL_HISTOGRAM_GREEN_SIZE:
757 *params = (GLint) ctx->Histogram.GreenSize;
758 break;
759 case GL_HISTOGRAM_BLUE_SIZE:
760 *params = (GLint) ctx->Histogram.BlueSize;
761 break;
762 case GL_HISTOGRAM_ALPHA_SIZE:
763 *params = (GLint) ctx->Histogram.AlphaSize;
764 break;
765 case GL_HISTOGRAM_LUMINANCE_SIZE:
766 *params = (GLint) ctx->Histogram.LuminanceSize;
767 break;
768 case GL_HISTOGRAM_SINK:
769 *params = (GLint) ctx->Histogram.Sink;
770 break;
771 default:
772 gl_error(ctx, GL_INVALID_ENUM, "glGetHistogramParameteriv(pname)");
773 }
774 }
775
776
777 void
778 _mesa_GetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat *params)
779 {
780 GET_CURRENT_CONTEXT(ctx);
781 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetMinmaxParameterfv");
782
783 if (!ctx->Extensions.EXT_histogram) {
784 gl_error(ctx, GL_INVALID_OPERATION, "glGetMinmaxParameterfv");
785 return;
786 }
787 if (target != GL_MINMAX) {
788 gl_error(ctx, GL_INVALID_ENUM, "glGetMinmaxParameterfv(target)");
789 return;
790 }
791 if (pname == GL_MINMAX_FORMAT) {
792 *params = (GLfloat) ctx->MinMax.Format;
793 }
794 else if (pname == GL_MINMAX_SINK) {
795 *params = (GLfloat) ctx->MinMax.Sink;
796 }
797 else {
798 gl_error(ctx, GL_INVALID_ENUM, "glGetMinMaxParameterfv(pname)");
799 }
800 }
801
802
803 void
804 _mesa_GetMinmaxParameteriv(GLenum target, GLenum pname, GLint *params)
805 {
806 GET_CURRENT_CONTEXT(ctx);
807 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glGetMinmaxParameteriv");
808
809 if (!ctx->Extensions.EXT_histogram) {
810 gl_error(ctx, GL_INVALID_OPERATION, "glGetMinmaxParameteriv");
811 return;
812 }
813 if (target != GL_MINMAX) {
814 gl_error(ctx, GL_INVALID_ENUM, "glGetMinmaxParameteriv(target)");
815 return;
816 }
817 if (pname == GL_MINMAX_FORMAT) {
818 *params = (GLint) ctx->MinMax.Format;
819 }
820 else if (pname == GL_MINMAX_SINK) {
821 *params = (GLint) ctx->MinMax.Sink;
822 }
823 else {
824 gl_error(ctx, GL_INVALID_ENUM, "glGetMinMaxParameteriv(pname)");
825 }
826 }
827
828
829 void
830 _mesa_Histogram(GLenum target, GLsizei width, GLenum internalFormat, GLboolean sink)
831 {
832 GLuint i;
833 GLboolean error = GL_FALSE;
834 GET_CURRENT_CONTEXT(ctx);
835 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glHistogram");
836
837 if (!ctx->Extensions.EXT_histogram) {
838 gl_error(ctx, GL_INVALID_OPERATION, "glHistogram");
839 return;
840 }
841
842 if (target != GL_HISTOGRAM && target != GL_PROXY_HISTOGRAM) {
843 gl_error(ctx, GL_INVALID_ENUM, "glHistogram(target)");
844 return;
845 }
846
847 if (width < 0 || width > HISTOGRAM_TABLE_SIZE) {
848 if (target == GL_PROXY_HISTOGRAM) {
849 error = GL_TRUE;
850 }
851 else {
852 if (width < 0)
853 gl_error(ctx, GL_INVALID_VALUE, "glHistogram(width)");
854 else
855 gl_error(ctx, GL_TABLE_TOO_LARGE, "glHistogram(width)");
856 return;
857 }
858 }
859
860 if (width != 0 && _mesa_bitcount(width) != 1) {
861 if (target == GL_PROXY_HISTOGRAM) {
862 error = GL_TRUE;
863 }
864 else {
865 gl_error(ctx, GL_INVALID_VALUE, "glHistogram(width)");
866 return;
867 }
868 }
869
870 if (base_histogram_format(internalFormat) < 0) {
871 if (target == GL_PROXY_HISTOGRAM) {
872 error = GL_TRUE;
873 }
874 else {
875 gl_error(ctx, GL_INVALID_ENUM, "glHistogram(internalFormat)");
876 return;
877 }
878 }
879
880 /* reset histograms */
881 for (i = 0; i < HISTOGRAM_TABLE_SIZE; i++) {
882 ctx->Histogram.Count[i][0] = 0;
883 ctx->Histogram.Count[i][1] = 0;
884 ctx->Histogram.Count[i][2] = 0;
885 ctx->Histogram.Count[i][3] = 0;
886 }
887
888 if (error) {
889 ctx->Histogram.Width = 0;
890 ctx->Histogram.Format = 0;
891 ctx->Histogram.RedSize = 0;
892 ctx->Histogram.GreenSize = 0;
893 ctx->Histogram.BlueSize = 0;
894 ctx->Histogram.AlphaSize = 0;
895 ctx->Histogram.LuminanceSize = 0;
896 }
897 else {
898 ctx->Histogram.Width = width;
899 ctx->Histogram.Format = internalFormat;
900 ctx->Histogram.Sink = sink;
901 ctx->Histogram.RedSize = 0xffffffff;
902 ctx->Histogram.GreenSize = 0xffffffff;
903 ctx->Histogram.BlueSize = 0xffffffff;
904 ctx->Histogram.AlphaSize = 0xffffffff;
905 ctx->Histogram.LuminanceSize = 0xffffffff;
906 }
907
908 ctx->NewState |= _NEW_PIXEL;
909 }
910
911
912 void
913 _mesa_Minmax(GLenum target, GLenum internalFormat, GLboolean sink)
914 {
915 GET_CURRENT_CONTEXT(ctx);
916 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glMinmax");
917
918 if (!ctx->Extensions.EXT_histogram) {
919 gl_error(ctx, GL_INVALID_OPERATION, "glMinmax");
920 return;
921 }
922
923 if (target != GL_MINMAX) {
924 gl_error(ctx, GL_INVALID_ENUM, "glMinMax(target)");
925 return;
926 }
927
928 if (base_histogram_format(internalFormat) < 0) {
929 gl_error(ctx, GL_INVALID_ENUM, "glMinMax(internalFormat)");
930 return;
931 }
932
933 ctx->MinMax.Sink = sink;
934 ctx->NewState |= _NEW_PIXEL;
935 }
936
937
938 void
939 _mesa_ResetHistogram(GLenum target)
940 {
941 GLuint i;
942 GET_CURRENT_CONTEXT(ctx);
943 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glResetHistogram");
944
945 if (!ctx->Extensions.EXT_histogram) {
946 gl_error(ctx, GL_INVALID_OPERATION, "glResetHistogram");
947 return;
948 }
949
950 if (target != GL_HISTOGRAM) {
951 gl_error(ctx, GL_INVALID_ENUM, "glResetHistogram(target)");
952 return;
953 }
954
955 for (i = 0; i < HISTOGRAM_TABLE_SIZE; i++) {
956 ctx->Histogram.Count[i][0] = 0;
957 ctx->Histogram.Count[i][1] = 0;
958 ctx->Histogram.Count[i][2] = 0;
959 ctx->Histogram.Count[i][3] = 0;
960 }
961
962 ctx->NewState |= _NEW_PIXEL;
963 }
964
965
966 void
967 _mesa_ResetMinmax(GLenum target)
968 {
969 GET_CURRENT_CONTEXT(ctx);
970 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glResetMinmax");
971
972 if (!ctx->Extensions.EXT_histogram) {
973 gl_error(ctx, GL_INVALID_OPERATION, "glResetMinmax");
974 return;
975 }
976
977 if (target != GL_MINMAX) {
978 gl_error(ctx, GL_INVALID_ENUM, "glResetMinMax(target)");
979 return;
980 }
981
982 ctx->MinMax.Min[RCOMP] = 1000; ctx->MinMax.Max[RCOMP] = -1000;
983 ctx->MinMax.Min[GCOMP] = 1000; ctx->MinMax.Max[GCOMP] = -1000;
984 ctx->MinMax.Min[BCOMP] = 1000; ctx->MinMax.Max[BCOMP] = -1000;
985 ctx->MinMax.Min[ACOMP] = 1000; ctx->MinMax.Max[ACOMP] = -1000;
986 ctx->NewState |= _NEW_PIXEL;
987 }