HomeSort by relevance Sort by last modified time
    Searched refs:colorTemp (Results 1 - 5 of 5) sorted by null

  /external/mesa3d/src/mesa/state_tracker/
st_atom_pixeltransfer.c 148 const GLuint colorTemp = 0;
159 * TEX colorTemp, fragment.texcoord[0], texture[0], 2D;
164 inst[ic].DstReg.Index = colorTemp;
184 /* MAD colorTemp, colorTemp, scale, bias; */
188 inst[ic].DstReg.Index = colorTemp;
190 inst[ic].SrcReg[0].Index = colorTemp;
213 /* TEX temp.rg, colorTemp.rgba, texture[1], 2D; */
220 inst[ic].SrcReg[0].Index = colorTemp;
225 /* TEX temp.ba, colorTemp.baba, texture[1], 2D; *
    [all...]
  /external/libexif/libexif/olympus/
mnote-olympus-entry.c 707 unsigned long colorTemp = 0;
710 colorTemp = 3000;
713 colorTemp = 3700;
716 colorTemp = 4000;
719 colorTemp = 4500;
722 colorTemp = 5500;
725 colorTemp = 6500;
728 colorTemp = 7500;
731 if (colorTemp) {
732 snprintf (v, maxlen, _("Manual: %liK"), colorTemp);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aaline.c 142 int colorTemp, texTemp; /**< temp registers */
225 if (aactx->colorTemp < 0)
226 aactx->colorTemp = i;
233 assert(aactx->colorTemp >= 0);
266 decl.Range.Last = aactx->colorTemp;
301 newInst.Src[0].Register.Index = aactx->colorTemp;
313 newInst.Src[0].Register.Index = aactx->colorTemp;
327 * Look for writes to result.color and replace with colorTemp reg.
336 dst->Register.Index = aactx->colorTemp;
367 transform.colorTemp = -1
    [all...]
draw_pipe_aapoint.c 123 int tmp0, colorTemp; /**< temp registers */
189 else if (aactx->colorTemp < 0)
190 aactx->colorTemp = i;
196 assert(aactx->colorTemp != aactx->tmp0);
223 decl.Range.Last = aactx->colorTemp;
444 /* MOV result.color.xyz, colorTemp; */
453 newInst.Src[0].Register.Index = aactx->colorTemp;
456 /* MUL result.color.w, colorTemp, tmp0.w; */
465 newInst.Src[0].Register.Index = aactx->colorTemp;
472 * Look for writes to result.color and replace with colorTemp reg
    [all...]
  /external/mesa3d/src/mesa/program/
programopt.c 262 GLuint colorTemp, fogFactorTemp; /* temporary registerss */
293 /* TEMP colorTemp; */
294 colorTemp = fprog->Base.NumTemporaries++;
305 /* change the instruction to write to colorTemp w/ clamping */
307 inst->DstReg.Index = colorTemp;
380 /* LRP result.color.xyz, fogFactorTemp.xxxx, colorTemp, fogColorRef; */
389 inst->SrcReg[1].Index = colorTemp;
395 /* MOV result.color.w, colorTemp.x; # copy alpha */
401 inst->SrcReg[0].Index = colorTemp;

Completed in 93 milliseconds