Home | History | Annotate | Download | only in tnl

Lines Matching defs:in

8  * to deal in the Software without restriction, including without limitation
14 * in all copies or substantial portions of the Software.
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
72 const TYPE *in = (TYPE *)ptr; \
74 *fptr++ = MACRO(*in); \
75 in++; \
81 const TYPE *in = (TYPE *)ptr; \
83 *fptr++ = (GLfloat)(*in); \
84 in++; \
106 const GLubyte *in = (GLubyte *) ptr; /* in is in BGRA order */
107 *fptr++ = UBYTE_TO_FLOAT(in[2]); /* red */
108 *fptr++ = UBYTE_TO_FLOAT(in[1]); /* green */
109 *fptr++ = UBYTE_TO_FLOAT(in[0]); /* blue */
110 *fptr++ = UBYTE_TO_FLOAT(in[3]); /* alpha */
123 GLhalfARB *in = (GLhalfARB *)ptr;
126 *fptr++ = _mesa_half_to_float(in[j]);
135 * In OpenGL, a fixed-point number is a "signed 2's complement 16.16 scaled
153 const GLfixed *in = (GLfixed *) ptr;
155 *fptr++ = (GLfloat) (2 * in[j] + 1) / (GLfloat) ((1 << 16) - 1);
161 const GLfixed *in = (GLfixed *) ptr;
163 *fptr++ = in[j] / (GLfloat) (1 << 16);
338 /* Translate indices to GLuints and store in VB->Elts.
378 const GLuint *in = (GLuint *)ptr;
380 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
383 const GLushort *in = (GLushort *)ptr;
385 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
388 const GLubyte *in = (GLubyte *)ptr;
390 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
418 * module. In a regular swtnl driver, this can be plugged straight
500 * emit strings of prims with the same basevertex in one draw call.