Home | History | Annotate | Download | only in tnl

Lines Matching defs:in

9  * to deal in the Software without restriction, including without limitation
15 * in all copies or substantial portions of the Software.
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.
69 const TYPE *in = (TYPE *)ptr; \
71 *fptr++ = MACRO(*in); \
72 in++; \
78 const TYPE *in = (TYPE *)ptr; \
80 *fptr++ = (GLfloat)(*in); \
81 in++; \
103 const GLubyte *in = (GLubyte *) ptr; /* in is in BGRA order */
104 *fptr++ = UBYTE_TO_FLOAT(in[2]); /* red */
105 *fptr++ = UBYTE_TO_FLOAT(in[1]); /* green */
106 *fptr++ = UBYTE_TO_FLOAT(in[0]); /* blue */
107 *fptr++ = UBYTE_TO_FLOAT(in[3]); /* alpha */
120 GLhalfARB *in = (GLhalfARB *)ptr;
123 *fptr++ = _mesa_half_to_float(in[j]);
132 * In OpenGL, a fixed-point number is a "signed 2's complement 16.16 scaled
149 const GLfixed *in = (GLfixed *) ptr;
151 *fptr++ = (GLfloat) (2 * in[j] + 1) / (GLfloat) ((1 << 16) - 1);
157 const GLfixed *in = (GLfixed *) ptr;
159 *fptr++ = in[j] / (GLfloat) (1 << 16);
333 /* Translate indices to GLuints and store in VB->Elts.
371 const GLuint *in = (GLuint *)ptr;
373 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
376 const GLushort *in = (GLushort *)ptr;
378 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
381 const GLubyte *in = (GLubyte *)ptr;
383 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
428 * module. In a regular swtnl driver, this can be plugged straight
503 * emit strings of prims with the same basevertex in one draw call.