Lines Matching defs:texUnit
211 struct gl_fixedfunc_texture_unit *texUnit =
213 if (!texUnit)
217 ? (texUnit->Enabled | texBit) : (texUnit->Enabled & ~texBit);
219 if (texUnit->Enabled == newenabled)
223 texUnit->Enabled = newenabled;
766 struct gl_fixedfunc_texture_unit *texUnit = get_texcoord_unit(ctx);
771 if (texUnit) {
773 GLbitfield newenabled = texUnit->TexGenEnabled & ~coordBit;
776 if (texUnit->TexGenEnabled == newenabled)
779 texUnit->TexGenEnabled = newenabled;
787 struct gl_fixedfunc_texture_unit *texUnit = get_texcoord_unit(ctx);
792 if (texUnit) {
794 texUnit->TexGenEnabled & ~STR_BITS;
797 if (texUnit->TexGenEnabled == newenabled)
800 texUnit->TexGenEnabled = newenabled;
1331 const struct gl_fixedfunc_texture_unit *const texUnit =
1334 if (!texUnit)
1337 return (texUnit->Enabled & bit) ? GL_TRUE : GL_FALSE;
1553 const struct gl_fixedfunc_texture_unit *texUnit =
1559 if (texUnit) {
1561 return (texUnit->TexGenEnabled & coordBit) ? GL_TRUE : GL_FALSE;
1567 const struct gl_fixedfunc_texture_unit *texUnit =
1573 if (texUnit) {
1574 return (texUnit->TexGenEnabled & STR_BITS) == STR_BITS