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 /* Temporary values used in texgen.
171 /* This is unusual in that we respect the stride of the output vector
172 * (f). This allows us to pass in either a texcoord vector4f, or a
256 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
264 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_3;
266 out->size = MAX2(in->size, 3);
267 if (in->size == 4)
268 _mesa_copy_tab[0x8]( out, in );
278 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
293 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_3;
295 out->size = MAX2(in->size, 3);
296 if (in->size == 4)
297 _mesa_copy_tab[0x8]( out, in );
306 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
319 out->size = MAX2(in->size,2);
327 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_2;
328 if (in->size > 2)
329 _mesa_copy_tab[all_bits[in->size] & ~0x3]( out, in );
340 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
359 out->size = MAX2(in->size, store->TexgenSize[unit]);
360 out->flags |= (in->flags & VEC_SIZE_FLAGS) | texUnit->TexGenEnabled;
363 copy = (all_bits[in->size] & ~texUnit->TexGenEnabled);
365 _mesa_copy_tab[copy]( out, in );