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

  /external/mesa3d/src/gallium/drivers/r300/
r300_render.c 75 uint32_t color_control = rs->color_control; local
77 /* By default (see r300_state.c:r300_create_rs_state) color_control is
98 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_SECOND;
103 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_LAST;
106 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_FIRST;
110 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_LAST;
113 return color_control;
    [all...]
r300_context.h 169 uint32_t color_control; /* R300_GA_COLOR_CONTROL: 0x4278 */ member in struct:r300_rs_state
r300_state.c     [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_state.c 701 uint32_t color_control = 0, target_mask = 0; local
712 color_control |= S_028808_PER_MRT_BLEND(1);
715 color_control |= (state->logicop_func << 16) | (state->logicop_func << 20);
717 color_control |= (0xcc << 16);
723 color_control |= S_028808_TARGET_BLEND_ENABLE(1 << i);
730 color_control |= S_028808_TARGET_BLEND_ENABLE(1 << i);
737 color_control |= S_028808_SPECIAL_OP(mode);
739 color_control |= S_028808_SPECIAL_OP(V_028808_DISABLE);
742 blend->cb_color_control = color_control;
    [all...]
evergreen_state.c 689 uint32_t color_control = 0, target_mask; local
703 color_control |= (state->logicop_func << 16) | (state->logicop_func << 20);
705 color_control |= (0xcc << 16);
720 color_control |= S_028808_MODE(mode);
722 color_control |= S_028808_MODE(V_028808_CB_DISABLE);
725 color_control);
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 140 uint32_t color_control; local
145 color_control = S_028808_MODE(V_028808_CB_NORMAL);
147 color_control |= S_028808_ROP3(state->logicop_func | (state->logicop_func << 4));
149 color_control |= S_028808_ROP3(0xcc);
151 si_pm4_set_reg(pm4, R_028808_CB_COLOR_CONTROL, color_control);
    [all...]

Completed in 731 milliseconds