HomeSort by relevance Sort by last modified time
    Searched refs:color_control (Results 1 - 7 of 7) 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 161 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 318 uint32_t color_control = 0, target_mask = 0; local
330 color_control |= S_028808_PER_MRT_BLEND(1);
333 color_control |= (state->logicop_func << 16) | (state->logicop_func << 20);
335 color_control |= (0xcc << 16);
341 color_control |= S_028808_TARGET_BLEND_ENABLE(1 << i);
348 color_control |= S_028808_TARGET_BLEND_ENABLE(1 << i);
355 color_control |= S_028808_SPECIAL_OP(mode);
357 color_control |= S_028808_SPECIAL_OP(V_028808_DISABLE);
362 blend->cb_color_control = color_control;
363 blend->cb_color_control_no_blend = color_control & C_028808_TARGET_BLEND_ENABLE
    [all...]
evergreen_state.c 308 uint32_t color_control = 0, target_mask = 0; local
319 color_control |= (state->logicop_func << 16) | (state->logicop_func << 20);
321 color_control |= (0xcc << 16);
340 color_control |= S_028808_MODE(mode);
342 color_control |= S_028808_MODE(V_028808_CB_DISABLE);
345 r600_store_context_reg(&blend->buffer, R_028808_CB_COLOR_CONTROL, color_control);
    [all...]
r600_state_common.c 158 unsigned color_control; local
166 color_control = blend->cb_color_control;
170 color_control = blend->cb_color_control_no_blend;
179 rctx->cb_misc_state.cb_color_control != color_control) {
180 rctx->cb_misc_state.cb_color_control = color_control;
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 411 uint32_t color_control = 0; local
421 color_control |= S_028808_ROP3(state->logicop_func | (state->logicop_func << 4));
423 color_control |= S_028808_ROP3(0xcc);
554 color_control |= S_028808_MODE(mode);
556 color_control |= S_028808_MODE(V_028808_CB_DISABLE);
578 color_control |= S_028808_DISABLE_DUAL_QUAD(1);
581 si_pm4_set_reg(pm4, R_028808_CB_COLOR_CONTROL, color_control);
    [all...]

Completed in 149 milliseconds