1 /**************************************************************************
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
6 **************************************************************************/
10 * Code to implement GL_OES_query_matrix. See the spec at:
11 * http://www.khronos.org/registry/gles/extensions/OES/OES_query_matrix.txt
18 #include "querymatrix.h"
23 * This is from the GL_OES_query_matrix extension specification:
25 * GLbitfield glQueryMatrixxOES( GLfixed mantissa[16],
26 * GLint exponent[16] )
27 * mantissa[16] contains the contents of the current matrix in GLfixed
28 * format. exponent[16] contains the unbiased exponents applied to the
29 * matrix components, so that the internal representation of component i
30 * is close to mantissa[i] * 2^exponent[i]. The function returns a status
31 * word which is zero if all the components are valid. If
32 * status & (1<<i) != 0, the component i is invalid (e.g., NaN, Inf).
33 * The implementations are not required to keep track of overflows. In
34 * that case, the invalid bits are never set.
37 #define INT_TO_FIXED(x) ((GLfixed) ((x) << 16))
38 #define FLOAT_TO_FIXED(x) ((GLfixed) ((x) * 65536.0))
41 /* Oddly, the fpclassify() function doesn't exist in such a form
42 * on MSVC. This is an implementation using slightly different
43 * lower-level Windows functions.
47 enum {FP_NAN
, FP_INFINITE
, FP_ZERO
, FP_SUBNORMAL
, FP_NORMAL
}
51 case _FPCLASS_SNAN
: /* signaling NaN */
52 case _FPCLASS_QNAN
: /* quiet NaN */
54 case _FPCLASS_NINF
: /* negative infinity */
55 case _FPCLASS_PINF
: /* positive infinity */
57 case _FPCLASS_NN
: /* negative normal */
58 case _FPCLASS_PN
: /* positive normal */
60 case _FPCLASS_ND
: /* negative denormalized */
61 case _FPCLASS_PD
: /* positive denormalized */
63 case _FPCLASS_NZ
: /* negative zero */
64 case _FPCLASS_PZ
: /* positive zero */
67 /* Should never get here; but if we do, this will guarantee
68 * that the pattern is not treated like a number.
74 #elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) || \
75 defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \
76 (defined(__sun) && defined(__C99FEATURES__)) || defined(__MINGW32__) || \
77 (defined(__sun) && defined(__GNUC__)) || defined(ANDROID) || defined(__HAIKU__)
79 /* fpclassify is available. */
81 #elif !defined(_XOPEN_SOURCE) || _XOPEN_SOURCE < 600
83 enum {FP_NAN
, FP_INFINITE
, FP_ZERO
, FP_SUBNORMAL
, FP_NORMAL
}
86 /* XXX do something better someday */
92 GLbitfield GLAPIENTRY
_mesa_QueryMatrixxOES(GLfixed mantissa
[16], GLint exponent
[16])
96 GLenum currentMode
= GL_FALSE
;
97 GLenum desiredMatrix
= GL_FALSE
;
98 /* The bitfield returns 1 for each component that is invalid (i.e.
99 * NaN or Inf). In case of error, everything is invalid.
102 register unsigned int i
;
105 /* This data structure defines the mapping between the current matrix
106 * mode and the desired matrix identifier.
110 GLenum desiredMatrix
;
112 {GL_MODELVIEW
, GL_MODELVIEW_MATRIX
},
113 {GL_PROJECTION
, GL_PROJECTION_MATRIX
},
114 {GL_TEXTURE
, GL_TEXTURE_MATRIX
},
117 /* Call Mesa to get the current matrix in floating-point form. First,
118 * we have to figure out what the current matrix mode is.
120 _mesa_GetIntegerv(GL_MATRIX_MODE
, &tmp
);
121 currentMode
= (GLenum
) tmp
;
123 /* The mode is either GL_FALSE, if for some reason we failed to query
124 * the mode, or a given mode from the above table. Search for the
125 * returned mode to get the desired matrix; if we don't find it,
126 * we can return immediately, as _mesa_GetInteger() will have
127 * logged the necessary error already.
129 for (i
= 0; i
< sizeof(modes
)/sizeof(modes
[0]); i
++) {
130 if (modes
[i
].currentMode
== currentMode
) {
131 desiredMatrix
= modes
[i
].desiredMatrix
;
135 if (desiredMatrix
== GL_FALSE
) {
136 /* Early error means all values are invalid. */
140 /* Now pull the matrix itself. */
141 _mesa_GetFloatv(desiredMatrix
, matrix
);
144 for (i
= 0, bit
= 1; i
< 16; i
++, bit
<<=1) {
145 float normalizedFraction
;
148 switch (fpclassify(matrix
[i
])) {
149 /* A "subnormal" or denormalized number is too small to be
150 * represented in normal format; but despite that it's a
151 * valid floating point number. FP_ZERO and FP_NORMAL
152 * are both valid as well. We should be fine treating
153 * these three cases as legitimate floating-point numbers.
158 normalizedFraction
= (GLfloat
)frexp(matrix
[i
], &exp
);
159 mantissa
[i
] = FLOAT_TO_FIXED(normalizedFraction
);
160 exponent
[i
] = (GLint
) exp
;
163 /* If the entry is not-a-number or an infinity, then the
164 * matrix component is invalid. The invalid flag for
165 * the component is already set; might as well set the
166 * other return values to known values. We'll set
167 * distinct values so that a savvy end user could determine
168 * whether the matrix component was a NaN or an infinity,
169 * but this is more useful for debugging than anything else
170 * since the standard doesn't specify any such magic
174 mantissa
[i
] = INT_TO_FIXED(0);
175 exponent
[i
] = (GLint
) 0;
180 /* Return +/- 1 based on whether it's a positive or
184 mantissa
[i
] = INT_TO_FIXED(1);
187 mantissa
[i
] = -INT_TO_FIXED(1);
189 exponent
[i
] = (GLint
) 0;
193 /* We should never get here; but here's a catching case
194 * in case fpclassify() is returnings something unexpected.
197 mantissa
[i
] = INT_TO_FIXED(2);
198 exponent
[i
] = (GLint
) 0;
203 } /* for each component */