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

1 2

  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_zsa.c 60 so->stencil[i].fail_op = so->stencil[i].zfail_op = so->stencil[i].zpass_op = PIPE_STENCIL_OP_KEEP;
73 so->stencil[0].zfail_op != PIPE_STENCIL_OP_KEEP ||
78 so->stencil[1].zfail_op != PIPE_STENCIL_OP_KEEP ||
110 VIVS_PE_STENCIL_OP_DEPTH_FAIL_FRONT(translate_stencil_op(so->stencil[0].zfail_op)) |
111 VIVS_PE_STENCIL_OP_DEPTH_FAIL_BACK(translate_stencil_op(so->stencil[1].zfail_op)) |
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_zsa.c 66 A2XX_RB_DEPTHCONTROL_STENCILZFAIL(fd_stencil_op(s->zfail_op));
80 A2XX_RB_DEPTHCONTROL_STENCILZFAIL_BF(fd_stencil_op(bs->zfail_op));
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_zsa.c 70 A3XX_RB_STENCIL_CONTROL_ZFAIL(fd_stencil_op(s->zfail_op));
84 A3XX_RB_STENCIL_CONTROL_ZFAIL_BF(fd_stencil_op(bs->zfail_op));
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_zsa.c 68 A5XX_RB_STENCIL_CONTROL_ZFAIL(fd_stencil_op(s->zfail_op));
81 A5XX_RB_STENCIL_CONTROL_ZFAIL_BF(fd_stencil_op(bs->zfail_op));
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_zsa.c 70 A4XX_RB_STENCIL_CONTROL_ZFAIL(fd_stencil_op(s->zfail_op));
86 A4XX_RB_STENCIL_CONTROL_ZFAIL_BF(fd_stencil_op(bs->zfail_op));
  /external/mesa3d/src/mesa/state_tracker/
st_atom_depth.c 125 dsa->stencil[0].zfail_op = gl_stencil_op_to_pipe(ctx->Stencil.ZFailFunc[0]);
136 dsa->stencil[1].zfail_op = gl_stencil_op_to_pipe(ctx->Stencil.ZFailFunc[back]);
st_cb_clear.c 260 depth_stencil.stencil[0].zfail_op = PIPE_STENCIL_OP_REPLACE;
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_cc.h 70 enum gen_stencil_op zfail_op; member in struct:ilo_state_cc_stencil_op_info
ilo_state_cc.c 121 front->zfail_op << GEN6_ZS_DW0_STENCIL_ZFAIL_OP__SHIFT |
125 back->zfail_op << GEN6_ZS_DW0_STENCIL1_ZFAIL_OP__SHIFT |
204 front->zfail_op << GEN8_ZS_DW1_STENCIL_ZFAIL_OP__SHIFT |
208 back->zfail_op << GEN8_ZS_DW1_STENCIL1_ZFAIL_OP__SHIFT |
  /external/mesa3d/src/gallium/drivers/r300/
r300_hyperz.c 96 s->zfail_op != PIPE_STENCIL_OP_KEEP);
227 s->zfail_op != PIPE_STENCIL_OP_KEEP ||
r300_state.c 721 (r300_translate_stencil_op(state->stencil[0].zfail_op) <<
739 (r300_translate_stencil_op(state->stencil[1].zfail_op) <<
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_depthstencil.c 148 ds->stencil[0].zfail = svga_translate_stencil_op(templ->stencil[0].zfail_op);
170 ds->stencil[1].zfail = svga_translate_stencil_op(templ->stencil[1].zfail_op);
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_state.c 172 bits |= op_map[state->zfail_op] << 25;
213 (cso->stencil[0].zfail_op == PIPE_STENCIL_OP_KEEP &&
215 cso->stencil[1].zfail_op == PIPE_STENCIL_OP_KEEP)))) {
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_pipe.c 48 dsa.stencil[0].zfail_op = d3dstencilop_to_pipe_stencil_op(rs[D3DRS_STENCILZFAIL]);
57 dsa.stencil[1].zfail_op = d3dstencilop_to_pipe_stencil_op(rs[D3DRS_CCW_STENCILZFAIL]);
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 282 unsigned zfail_op:3; /**< PIPE_STENCIL_OP_x */ member in struct:pipe_stencil_state
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_state.c 242 SB_DATA (so, nvgl_stencil_op(cso->stencil[0].zfail_op));
258 SB_DATA (so, nvgl_stencil_op(cso->stencil[1].zfail_op));
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_mlaa.c 121 mstencil.stencil[0].zfail_op = PIPE_STENCIL_OP_KEEP;
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_blitter_rectlist.c 398 info.stencil.front.zfail_op = GEN6_STENCILOP_KEEP;
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 481 int dfop = i915_translate_stencil_op(depth_stencil->stencil[0].zfail_op);
495 int dfop = i915_translate_stencil_op(depth_stencil->stencil[1].zfail_op);
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_state.c 392 SB_DATA (so, nvgl_stencil_op(cso->stencil[0].zfail_op));
408 SB_DATA (so, nvgl_stencil_op(cso->stencil[1].zfail_op));
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_state.c 365 SB_DATA (so, nvgl_stencil_op(cso->stencil[0].zfail_op));
380 SB_DATA (so, nvgl_stencil_op(cso->stencil[1].zfail_op));
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_state.cpp     [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_dump_state.c 533 &state->stencil[i], zfail_op);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_depth.c 187 stencil_op = stencil->zfail_op;
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test.c 642 zFailOp = softpipe->depth_stencil->stencil[face].zfail_op;

Completed in 772 milliseconds

1 2