blob: 805591914c5cdce03d7dbb931e70df3c3e76a83b [file] [log] [blame]
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001/*
Adam Jacksondc8058c2008-09-19 17:16:53 -04002 * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
3 * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice including the dates of first publication and
13 * either this permission notice or a reference to
14 * http://oss.sgi.com/projects/FreeB/
15 * shall be included 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 * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
22 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Except as contained in this notice, the name of Silicon Graphics, Inc.
26 * shall not be used in advertising or otherwise to promote the sale, use or
27 * other dealings in this Software without prior written authorization from
28 * Silicon Graphics, Inc.
29 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +000030
31#include <GL/gl.h>
Brian Paulf2ce3582006-06-12 19:56:57 +000032#include "glxclient.h"
Adam Jacksoncb3610e2004-10-25 21:09:16 +000033
34/*
35** Return the number of elements per group of a specified format
36*/
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020037GLint
38__glElementsPerGroup(GLenum format, GLenum type)
Adam Jacksoncb3610e2004-10-25 21:09:16 +000039{
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020040 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +000041 ** To make row length computation valid for image extraction,
42 ** packed pixel types assume elements per group equals one.
43 */
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020044 switch (type) {
45 case GL_UNSIGNED_BYTE_3_3_2:
46 case GL_UNSIGNED_BYTE_2_3_3_REV:
47 case GL_UNSIGNED_SHORT_5_6_5:
48 case GL_UNSIGNED_SHORT_5_6_5_REV:
49 case GL_UNSIGNED_SHORT_4_4_4_4:
50 case GL_UNSIGNED_SHORT_4_4_4_4_REV:
51 case GL_UNSIGNED_SHORT_5_5_5_1:
52 case GL_UNSIGNED_SHORT_1_5_5_5_REV:
53 case GL_UNSIGNED_SHORT_8_8_APPLE:
54 case GL_UNSIGNED_SHORT_8_8_REV_APPLE:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020055 case GL_UNSIGNED_INT_8_8_8_8:
56 case GL_UNSIGNED_INT_8_8_8_8_REV:
57 case GL_UNSIGNED_INT_10_10_10_2:
58 case GL_UNSIGNED_INT_2_10_10_10_REV:
59 case GL_UNSIGNED_INT_24_8_NV:
Adam Jacksoncb3610e2004-10-25 21:09:16 +000060 return 1;
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020061 default:
Adam Jacksoncb3610e2004-10-25 21:09:16 +000062 break;
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020063 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +000064
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020065 switch (format) {
66 case GL_RGB:
67 case GL_BGR:
Adam Jacksonb15aba92015-07-21 11:43:42 -040068 case GL_RGB_INTEGER_EXT:
69 case GL_BGR_INTEGER_EXT:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020070 return 3;
Ian Romanickbb45ab02009-11-20 11:03:31 -080071 case GL_RG:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020072 case GL_422_EXT:
73 case GL_422_REV_EXT:
74 case GL_422_AVERAGE_EXT:
75 case GL_422_REV_AVERAGE_EXT:
Jon TURNEY8937c162010-09-09 13:43:11 +010076 case GL_DEPTH_STENCIL_NV:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020077 case GL_YCBCR_422_APPLE:
78 case GL_LUMINANCE_ALPHA:
Adam Jacksonb15aba92015-07-21 11:43:42 -040079 case GL_LUMINANCE_ALPHA_INTEGER_EXT:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020080 return 2;
81 case GL_RGBA:
82 case GL_BGRA:
83 case GL_ABGR_EXT:
Adam Jacksonb15aba92015-07-21 11:43:42 -040084 case GL_RGBA_INTEGER_EXT:
85 case GL_BGRA_INTEGER_EXT:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +020086 return 4;
87 case GL_COLOR_INDEX:
88 case GL_STENCIL_INDEX:
89 case GL_DEPTH_COMPONENT:
90 case GL_RED:
91 case GL_GREEN:
92 case GL_BLUE:
93 case GL_ALPHA:
94 case GL_LUMINANCE:
95 case GL_INTENSITY:
Adam Jacksonb15aba92015-07-21 11:43:42 -040096 case GL_RED_INTEGER_EXT:
97 case GL_GREEN_INTEGER_EXT:
98 case GL_BLUE_INTEGER_EXT:
99 case GL_ALPHA_INTEGER_EXT:
100 case GL_LUMINANCE_INTEGER_EXT:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200101 return 1;
102 default:
103 return 0;
104 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000105}
106
107/*
108** Return the number of bytes per element, based on the element type (other
109** than GL_BITMAP).
110*/
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200111GLint
112__glBytesPerElement(GLenum type)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000113{
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200114 switch (type) {
115 case GL_UNSIGNED_SHORT:
116 case GL_SHORT:
117 case GL_UNSIGNED_SHORT_5_6_5:
118 case GL_UNSIGNED_SHORT_5_6_5_REV:
119 case GL_UNSIGNED_SHORT_4_4_4_4:
120 case GL_UNSIGNED_SHORT_4_4_4_4_REV:
121 case GL_UNSIGNED_SHORT_5_5_5_1:
122 case GL_UNSIGNED_SHORT_1_5_5_5_REV:
123 case GL_UNSIGNED_SHORT_8_8_APPLE:
124 case GL_UNSIGNED_SHORT_8_8_REV_APPLE:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200125 return 2;
126 case GL_UNSIGNED_BYTE:
127 case GL_BYTE:
128 case GL_UNSIGNED_BYTE_3_3_2:
129 case GL_UNSIGNED_BYTE_2_3_3_REV:
130 return 1;
131 case GL_INT:
132 case GL_UNSIGNED_INT:
133 case GL_FLOAT:
134 case GL_UNSIGNED_INT_8_8_8_8:
135 case GL_UNSIGNED_INT_8_8_8_8_REV:
136 case GL_UNSIGNED_INT_10_10_10_2:
137 case GL_UNSIGNED_INT_2_10_10_10_REV:
138 case GL_UNSIGNED_INT_24_8_NV:
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200139 return 4;
140 default:
141 return 0;
142 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000143}
144
145/*
146** Compute memory required for internal packed array of data of given type
147** and format.
148*/
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200149GLint
150__glImageSize(GLsizei width, GLsizei height, GLsizei depth,
151 GLenum format, GLenum type, GLenum target)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000152{
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200153 int bytes_per_row;
154 int components;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000155
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200156 switch (target) {
157 case GL_PROXY_TEXTURE_1D:
158 case GL_PROXY_TEXTURE_2D:
159 case GL_PROXY_TEXTURE_3D:
160 case GL_PROXY_TEXTURE_4D_SGIS:
161 case GL_PROXY_TEXTURE_CUBE_MAP:
162 case GL_PROXY_TEXTURE_RECTANGLE_ARB:
163 case GL_PROXY_HISTOGRAM:
164 case GL_PROXY_COLOR_TABLE:
165 case GL_PROXY_TEXTURE_COLOR_TABLE_SGI:
166 case GL_PROXY_POST_CONVOLUTION_COLOR_TABLE:
167 case GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE:
168 case GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP:
169 return 0;
170 }
Ian Romanick5f1f2292005-01-07 02:39:09 +0000171
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200172 if (width < 0 || height < 0 || depth < 0) {
173 return 0;
174 }
Ian Romanick5f1f2292005-01-07 02:39:09 +0000175
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200176 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000177 ** Zero is returned if either format or type are invalid.
178 */
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200179 components = __glElementsPerGroup(format, type);
180 if (type == GL_BITMAP) {
181 if (format == GL_COLOR_INDEX || format == GL_STENCIL_INDEX) {
182 bytes_per_row = (width + 7) >> 3;
183 }
184 else {
185 return 0;
186 }
187 }
188 else {
189 bytes_per_row = __glBytesPerElement(type) * width;
190 }
Ian Romanick5f1f2292005-01-07 02:39:09 +0000191
RALOVICH, Kristóff788a8e2008-10-13 13:12:37 +0200192 return bytes_per_row * height * depth * components;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000193}