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

  /external/mesa3d/src/gallium/drivers/r300/
r300_render_stencilref.c 47 struct r300_dsa_state *dsa = (struct r300_dsa_state*)r300->dsa_state.state;
59 struct r300_dsa_state *dsa = (struct r300_dsa_state*)r300->dsa_state.state;
77 struct r300_dsa_state *dsa = (struct r300_dsa_state*)r300->dsa_state.state;
84 r300_mark_atom_dirty(r300, &r300->dsa_state);
92 struct r300_dsa_state *dsa = (struct r300_dsa_state*)r300->dsa_state.state;
100 r300_mark_atom_dirty(r300, &r300->dsa_state);
r300_hyperz.c 43 struct r300_dsa_state *dsa = r300->dsa_state.state;
65 struct r300_dsa_state *dsa = r300->dsa_state.state;
73 struct r300_dsa_state *dsa = r300->dsa_state.state;
100 struct r300_dsa_state *dsa = r300->dsa_state.state;
136 struct r300_dsa_state *dsa = r300->dsa_state.state;
290 if (r300_dsa_writes_depth_stencil(r300->dsa_state.state) &&
291 (r300_dsa_alpha_test_enabled(r300->dsa_state.state) || /* (1) */
r300_state.c 554 r300_mark_atom_dirty(r300, &r300->dsa_state);
789 (struct r300_dsa_state*)r300->dsa_state.state;
812 UPDATE_STATE(state, r300->dsa_state);
833 r300_mark_atom_dirty(r300, &r300->dsa_state);
    [all...]
r300_context.h 506 struct r300_atom dsa_state; member in struct:r300_context
r300_context.c 181 R300_INIT_ATOM(dsa_state, is_r500 ? 10 : 6);
r300_blit.c 64 util_blitter_save_depth_stencil_alpha(r300->blitter, r300->dsa_state.state);
    [all...]
  /external/mesa3d/src/gallium/drivers/virgl/
virgl_encode.c 119 const struct pipe_depth_stencil_alpha_state *dsa_state)
126 tmp = VIRGL_OBJ_DSA_S0_DEPTH_ENABLE(dsa_state->depth.enabled) |
127 VIRGL_OBJ_DSA_S0_DEPTH_WRITEMASK(dsa_state->depth.writemask) |
128 VIRGL_OBJ_DSA_S0_DEPTH_FUNC(dsa_state->depth.func) |
129 VIRGL_OBJ_DSA_S0_ALPHA_ENABLED(dsa_state->alpha.enabled) |
130 VIRGL_OBJ_DSA_S0_ALPHA_FUNC(dsa_state->alpha.func);
134 tmp = VIRGL_OBJ_DSA_S1_STENCIL_ENABLED(dsa_state->stencil[i].enabled) |
135 VIRGL_OBJ_DSA_S1_STENCIL_FUNC(dsa_state->stencil[i].func) |
136 VIRGL_OBJ_DSA_S1_STENCIL_FAIL_OP(dsa_state->stencil[i].fail_op) |
137 VIRGL_OBJ_DSA_S1_STENCIL_ZPASS_OP(dsa_state->stencil[i].zpass_op)
    [all...]
virgl_encode.h 195 const struct pipe_depth_stencil_alpha_state *dsa_state);
virgl_context.c 286 void *dsa_state)
289 uint32_t handle = (unsigned long)dsa_state;
    [all...]
  /external/virglrenderer/tests/
testvirgl_encode.c 112 const struct pipe_depth_stencil_alpha_state *dsa_state)
119 tmp = VIRGL_OBJ_DSA_S0_DEPTH_ENABLE(dsa_state->depth.enabled) |
120 VIRGL_OBJ_DSA_S0_DEPTH_WRITEMASK(dsa_state->depth.writemask) |
121 VIRGL_OBJ_DSA_S0_DEPTH_FUNC(dsa_state->depth.func) |
122 VIRGL_OBJ_DSA_S0_ALPHA_ENABLED(dsa_state->alpha.enabled) |
123 VIRGL_OBJ_DSA_S0_ALPHA_FUNC(dsa_state->alpha.func);
127 tmp = VIRGL_OBJ_DSA_S1_STENCIL_ENABLED(dsa_state->stencil[i].enabled) |
128 VIRGL_OBJ_DSA_S1_STENCIL_FUNC(dsa_state->stencil[i].func) |
129 VIRGL_OBJ_DSA_S1_STENCIL_FAIL_OP(dsa_state->stencil[i].fail_op) |
130 VIRGL_OBJ_DSA_S1_STENCIL_ZPASS_OP(dsa_state->stencil[i].zpass_op)
    [all...]
testvirgl_encode.h 184 const struct pipe_depth_stencil_alpha_state *dsa_state);
  /external/virglrenderer/src/
vrend_decode.c 473 struct pipe_depth_stencil_alpha_state *dsa_state; local
479 dsa_state = CALLOC_STRUCT(pipe_depth_stencil_alpha_state);
480 if (!dsa_state)
484 dsa_state->depth.enabled = tmp & 0x1;
485 dsa_state->depth.writemask = (tmp >> 1) & 0x1;
486 dsa_state->depth.func = (tmp >> 2) & 0x7;
488 dsa_state->alpha.enabled = (tmp >> 8) & 0x1;
489 dsa_state->alpha.func = (tmp >> 9) & 0x7;
493 dsa_state->stencil[i].enabled = tmp & 0x1;
494 dsa_state->stencil[i].func = (tmp >> 1) & 0x7
    [all...]
vrend_renderer.c 498 struct pipe_depth_stencil_alpha_state dsa_state; member in struct:vrend_sub_context
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_pipe.c 30 nine_convert_dsa_state(struct pipe_depth_stencil_alpha_state *dsa_state,
69 *dsa_state = dsa;
  /external/mesa3d/src/gallium/drivers/r600/
r600_hw_context.c 387 if (ctx->dsa_state.cso)
388 r600_mark_atom_dirty(ctx, &ctx->dsa_state.atom);
r600_pipe.h 523 struct r600_cso_state dsa_state; member in struct:r600_context
    [all...]
r600_state_common.c 308 struct r600_dsa_state *dsa = (struct r600_dsa_state*)rctx->dsa_state.cso;
333 r600_set_cso_state_with_cb(rctx, &rctx->dsa_state, NULL, NULL);
337 r600_set_cso_state_with_cb(rctx, &rctx->dsa_state, dsa, &dsa->buffer);
527 if (rctx->dsa_state.cso == state) {
    [all...]
r600_blit.c 77 util_blitter_save_depth_stencil_alpha(rctx->blitter, rctx->dsa_state.cso);
    [all...]
r600_state.c     [all...]
evergreen_state.c     [all...]

Completed in 2653 milliseconds