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.
67 /* Temporary values used in texgen.
169 /* This is unusual in that we respect the stride of the output vector
170 * (f). This allows us to pass in either a texcoord vector4f, or a
254 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
262 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_3;
264 out->size = MAX2(in->size, 3);
265 if (in->size == 4)
266 _mesa_copy_tab[0x8]( out, in );
276 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
291 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_3;
293 out->size = MAX2(in->size, 3);
294 if (in->size == 4)
295 _mesa_copy_tab[0x8]( out, in );
304 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
317 out->size = MAX2(in->size,2);
325 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_2;
326 if (in->size > 2)
327 _mesa_copy_tab[all_bits[in->size] & ~0x3]( out, in );
338 GLvector4f *in = VB->AttribPtr[VERT_ATTRIB_TEX0 + unit];
357 out->size = MAX2(in->size, store->TexgenSize[unit]);
358 out->flags |= (in->flags & VEC_SIZE_FLAGS) | texUnit->TexGenEnabled;
361 copy = (all_bits[in->size] & ~texUnit->TexGenEnabled);
363 _mesa_copy_tab[copy]( out, in );