Lines Matching refs:term
171 /** Set an RGB or A combiner source term */
177 GLuint term;
181 * Translate pname to (term, alpha).
190 term = pname - GL_SOURCE0_RGB;
197 term = pname - GL_SOURCE0_ALPHA;
205 if ((term == 3) && (ctx->API != API_OPENGL_COMPAT
211 assert(term < MAX_COMBINER_TERMS);
214 * Error-check param (the source term)
254 texUnit->Combine.SourceA[term] = param;
256 texUnit->Combine.SourceRGB[term] = param;
262 /** Set an RGB or A combiner operand term */
268 GLuint term;
278 term = pname - GL_OPERAND0_RGB;
285 term = pname - GL_OPERAND0_ALPHA;
293 if ((term == 3) && (ctx->API != API_OPENGL_COMPAT
299 assert(term < MAX_COMBINER_TERMS);
325 texUnit->Combine.OperandA[term] = param;
327 texUnit->Combine.OperandRGB[term] = param;