HomeSort by relevance Sort by last modified time
    Searched refs:FRAG_RESULT_COLOR (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_fragprog.c 230 if (outputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) {
232 machine->Outputs[FRAG_RESULT_COLOR]);
286 if (program->Base.OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) {
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 230 if (outputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) {
232 machine->Outputs[FRAG_RESULT_COLOR]);
286 if (program->Base.OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) {
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
programopt.c 270 if (!(fprog->Base.OutputsWritten & (1 << FRAG_RESULT_COLOR))) {
304 inst->DstReg.Index == FRAG_RESULT_COLOR) {
383 inst->DstReg.Index = FRAG_RESULT_COLOR;
398 inst->DstReg.Index = FRAG_RESULT_COLOR;
415 assert(fprog->Base.OutputsWritten & (1 << FRAG_RESULT_COLOR));
619 inst[0].DstReg.Index = FRAG_RESULT_COLOR;
635 prog->Base.OutputsWritten = BITFIELD64_BIT(FRAG_RESULT_COLOR);
program.c 803 if ((progA->OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) &&
816 PROGRAM_OUTPUT, FRAG_RESULT_COLOR,
826 if (progA->OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) {
    [all...]
nvfragparse.c 842 *outputRegNum = FRAG_RESULT_COLOR;
843 parseState->outputsWritten |= (1 << FRAG_RESULT_COLOR);
    [all...]
  /external/mesa3d/src/mesa/program/
programopt.c 270 if (!(fprog->Base.OutputsWritten & (1 << FRAG_RESULT_COLOR))) {
304 inst->DstReg.Index == FRAG_RESULT_COLOR) {
383 inst->DstReg.Index = FRAG_RESULT_COLOR;
398 inst->DstReg.Index = FRAG_RESULT_COLOR;
415 assert(fprog->Base.OutputsWritten & (1 << FRAG_RESULT_COLOR));
619 inst[0].DstReg.Index = FRAG_RESULT_COLOR;
635 prog->Base.OutputsWritten = BITFIELD64_BIT(FRAG_RESULT_COLOR);
program.c 803 if ((progA->OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) &&
816 PROGRAM_OUTPUT, FRAG_RESULT_COLOR,
826 if (progA->OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR)) {
    [all...]
nvfragparse.c 842 *outputRegNum = FRAG_RESULT_COLOR;
843 parseState->outputsWritten |= (1 << FRAG_RESULT_COLOR);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_pixeltransfer.c 171 fp->Base.OutputsWritten = BITFIELD64_BIT(FRAG_RESULT_COLOR);
255 last->DstReg.Index = FRAG_RESULT_COLOR;
st_program.c 660 case FRAG_RESULT_COLOR:
663 assert(attr == FRAG_RESULT_COLOR ||
    [all...]
st_cb_drawpixels.c 89 inst[0].DstReg.Index == FRAG_RESULT_COLOR &&
245 p->Instructions[ic].DstReg.Index = FRAG_RESULT_COLOR;
273 p->OutputsWritten |= BITFIELD64_BIT(FRAG_RESULT_COLOR);
    [all...]
st_mesa_to_tgsi.c 321 if (DstReg->Index >= FRAG_RESULT_COLOR) {
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_pixeltransfer.c 171 fp->Base.OutputsWritten = BITFIELD64_BIT(FRAG_RESULT_COLOR);
255 last->DstReg.Index = FRAG_RESULT_COLOR;
st_program.c 660 case FRAG_RESULT_COLOR:
663 assert(attr == FRAG_RESULT_COLOR ||
    [all...]
st_cb_drawpixels.c 89 inst[0].DstReg.Index == FRAG_RESULT_COLOR &&
245 p->Instructions[ic].DstReg.Index = FRAG_RESULT_COLOR;
273 p->OutputsWritten |= BITFIELD64_BIT(FRAG_RESULT_COLOR);
    [all...]
st_mesa_to_tgsi.c 321 if (DstReg->Index >= FRAG_RESULT_COLOR) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm_state.c 57 (fp->Base.OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR) ||
brw_wm_fp.c 981 if (c->fp->program.Base.OutputsWritten & (1 << FRAG_RESULT_COLOR)) {
982 outcolor = src_reg(PROGRAM_OUTPUT, FRAG_RESULT_COLOR);
998 0, src_reg(PROGRAM_OUTPUT, FRAG_RESULT_COLOR),
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_state.c 57 (fp->Base.OutputsWritten & BITFIELD64_BIT(FRAG_RESULT_COLOR) ||
brw_wm_fp.c 981 if (c->fp->program.Base.OutputsWritten & (1 << FRAG_RESULT_COLOR)) {
982 outcolor = src_reg(PROGRAM_OUTPUT, FRAG_RESULT_COLOR);
998 0, src_reg(PROGRAM_OUTPUT, FRAG_RESULT_COLOR),
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_fragprog.c 148 case FRAG_RESULT_COLOR:
210 case FRAG_RESULT_COLOR:
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_fragprog.c 148 case FRAG_RESULT_COLOR:
210 case FRAG_RESULT_COLOR:
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
builtin_variables.cpp 57 { ir_var_out, FRAG_RESULT_COLOR, "vec4", "gl_FragColor" },
    [all...]
  /external/mesa3d/src/glsl/
builtin_variables.cpp 57 { ir_var_out, FRAG_RESULT_COLOR, "vec4", "gl_FragColor" },
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mtypes.h 427 FRAG_RESULT_COLOR = 2,
431 * any are written, FRAG_RESULT_COLOR will not be written.
    [all...]

Completed in 484 milliseconds

1 2