Searched refs:depth_stencil (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_state_blend.c90 const struct pipe_depth_stencil_alpha_state *depth_stencil)
92 return mem_dup(depth_stencil, sizeof(*depth_stencil));
98 void *depth_stencil)
102 softpipe->depth_stencil = (struct pipe_depth_stencil_alpha_state *)depth_stencil;
89 softpipe_create_depth_stencil_state(struct pipe_context *pipe, const struct pipe_depth_stencil_alpha_state *depth_stencil) argument
97 softpipe_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
H A Dsp_quad_pipe.c46 sp->depth_stencil->depth.enabled &&
48 !sp->depth_stencil->alpha.enabled &&
H A Dsp_quad_depth_test.c532 switch (softpipe->depth_stencil->depth.func) {
590 if (softpipe->depth_stencil->depth.writemask) {
617 if (!softpipe->depth_stencil->stencil[1].enabled) {
627 func = softpipe->depth_stencil->stencil[face].func;
628 failOp = softpipe->depth_stencil->stencil[face].fail_op;
629 zFailOp = softpipe->depth_stencil->stencil[face].zfail_op;
630 zPassOp = softpipe->depth_stencil->stencil[face].zpass_op;
632 wrtMask = softpipe->depth_stencil->stencil[face].writemask;
633 valMask = softpipe->depth_stencil->stencil[face].valuemask;
649 if (softpipe->depth_stencil
[all...]
H A Dsp_tile_cache.h93 boolean depth_stencil; /**< Is the surface a depth/stencil format? */ member in struct:softpipe_tile_cache
H A Dsp_tile_cache.c183 tc->depth_stencil = util_format_is_depth_or_stencil(ps->format);
338 if (tc->depth_stencil) {
351 if (tc->depth_stencil) {
391 if (tc->depth_stencil) {
518 if (tc->depth_stencil) {
555 if (tc->depth_stencil) {
565 if (tc->depth_stencil) {
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_state_blend.c90 const struct pipe_depth_stencil_alpha_state *depth_stencil)
92 return mem_dup(depth_stencil, sizeof(*depth_stencil));
98 void *depth_stencil)
102 softpipe->depth_stencil = (struct pipe_depth_stencil_alpha_state *)depth_stencil;
89 softpipe_create_depth_stencil_state(struct pipe_context *pipe, const struct pipe_depth_stencil_alpha_state *depth_stencil) argument
97 softpipe_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
H A Dsp_quad_pipe.c46 sp->depth_stencil->depth.enabled &&
48 !sp->depth_stencil->alpha.enabled &&
H A Dsp_quad_depth_test.c532 switch (softpipe->depth_stencil->depth.func) {
590 if (softpipe->depth_stencil->depth.writemask) {
617 if (!softpipe->depth_stencil->stencil[1].enabled) {
627 func = softpipe->depth_stencil->stencil[face].func;
628 failOp = softpipe->depth_stencil->stencil[face].fail_op;
629 zFailOp = softpipe->depth_stencil->stencil[face].zfail_op;
630 zPassOp = softpipe->depth_stencil->stencil[face].zpass_op;
632 wrtMask = softpipe->depth_stencil->stencil[face].writemask;
633 valMask = softpipe->depth_stencil->stencil[face].valuemask;
649 if (softpipe->depth_stencil
[all...]
H A Dsp_tile_cache.h93 boolean depth_stencil; /**< Is the surface a depth/stencil format? */ member in struct:softpipe_tile_cache
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_state_blend.c111 const struct pipe_depth_stencil_alpha_state *depth_stencil)
115 state = mem_dup(depth_stencil, sizeof *depth_stencil);
134 void *depth_stencil)
138 if (llvmpipe->depth_stencil == depth_stencil)
143 llvmpipe->depth_stencil = depth_stencil;
110 llvmpipe_create_depth_stencil_state(struct pipe_context *pipe, const struct pipe_depth_stencil_alpha_state *depth_stencil) argument
133 llvmpipe_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
H A Dlp_context.h62 const struct pipe_depth_stencil_alpha_state *depth_stencil; member in struct:llvmpipe_context
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_blend.c111 const struct pipe_depth_stencil_alpha_state *depth_stencil)
115 state = mem_dup(depth_stencil, sizeof *depth_stencil);
134 void *depth_stencil)
138 if (llvmpipe->depth_stencil == depth_stencil)
143 llvmpipe->depth_stencil = depth_stencil;
110 llvmpipe_create_depth_stencil_state(struct pipe_context *pipe, const struct pipe_depth_stencil_alpha_state *depth_stencil) argument
133 llvmpipe_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
H A Dlp_context.h62 const struct pipe_depth_stencil_alpha_state *depth_stencil; member in struct:llvmpipe_context
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cache.h54 const struct pipe_depth_stencil_alpha_state *depth_stencil);
H A Dst_cb_clear.c252 /* depth_stencil state: always pass/set to ref value */
254 struct pipe_depth_stencil_alpha_state depth_stencil; local
255 memset(&depth_stencil, 0, sizeof(depth_stencil));
257 depth_stencil.depth.enabled = 1;
258 depth_stencil.depth.writemask = 1;
259 depth_stencil.depth.func = PIPE_FUNC_ALWAYS;
265 depth_stencil.stencil[0].enabled = 1;
266 depth_stencil.stencil[0].func = PIPE_FUNC_ALWAYS;
267 depth_stencil
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cache.h54 const struct pipe_depth_stencil_alpha_state *depth_stencil);
H A Dst_cb_clear.c252 /* depth_stencil state: always pass/set to ref value */
254 struct pipe_depth_stencil_alpha_state depth_stencil; local
255 memset(&depth_stencil, 0, sizeof(depth_stencil));
257 depth_stencil.depth.enabled = 1;
258 depth_stencil.depth.writemask = 1;
259 depth_stencil.depth.func = PIPE_FUNC_ALWAYS;
265 depth_stencil.stencil[0].enabled = 1;
266 depth_stencil.stencil[0].func = PIPE_FUNC_ALWAYS;
267 depth_stencil
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_state.c440 const struct pipe_depth_stencil_alpha_state *depth_stencil)
445 int testmask = depth_stencil->stencil[0].valuemask & 0xff;
446 int writemask = depth_stencil->stencil[0].writemask & 0xff;
455 if (depth_stencil->stencil[0].enabled) {
456 int test = i915_translate_compare_func(depth_stencil->stencil[0].func);
457 int fop = i915_translate_stencil_op(depth_stencil->stencil[0].fail_op);
458 int dfop = i915_translate_stencil_op(depth_stencil->stencil[0].zfail_op);
459 int dpop = i915_translate_stencil_op(depth_stencil->stencil[0].zpass_op);
469 if (depth_stencil->stencil[1].enabled) {
470 int test = i915_translate_compare_func(depth_stencil
439 i915_create_depth_stencil_state(struct pipe_context *pipe, const struct pipe_depth_stencil_alpha_state *depth_stencil) argument
527 i915_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
540 i915_delete_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
[all...]
H A Di915_state_dynamic.c92 modes4 |= i915->depth_stencil->stencil_modes4;
114 bfo[0] = i915->depth_stencil->bfo[0];
115 bfo[1] = i915->depth_stencil->bfo[1];
H A Di915_state_immediate.c131 LIS5 |= i915->depth_stencil->stencil_LIS5;
175 LIS6 |= i915->depth_stencil->depth_LIS6;
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state.c440 const struct pipe_depth_stencil_alpha_state *depth_stencil)
445 int testmask = depth_stencil->stencil[0].valuemask & 0xff;
446 int writemask = depth_stencil->stencil[0].writemask & 0xff;
455 if (depth_stencil->stencil[0].enabled) {
456 int test = i915_translate_compare_func(depth_stencil->stencil[0].func);
457 int fop = i915_translate_stencil_op(depth_stencil->stencil[0].fail_op);
458 int dfop = i915_translate_stencil_op(depth_stencil->stencil[0].zfail_op);
459 int dpop = i915_translate_stencil_op(depth_stencil->stencil[0].zpass_op);
469 if (depth_stencil->stencil[1].enabled) {
470 int test = i915_translate_compare_func(depth_stencil
439 i915_create_depth_stencil_state(struct pipe_context *pipe, const struct pipe_depth_stencil_alpha_state *depth_stencil) argument
527 i915_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
540 i915_delete_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
[all...]
H A Di915_state_dynamic.c92 modes4 |= i915->depth_stencil->stencil_modes4;
114 bfo[0] = i915->depth_stencil->bfo[0];
115 bfo[1] = i915->depth_stencil->bfo[1];
H A Di915_state_immediate.c131 LIS5 |= i915->depth_stencil->stencil_LIS5;
175 LIS6 |= i915->depth_stencil->depth_LIS6;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_depthstencil.c125 void *depth_stencil)
129 svga->curr.depth = (const struct svga_depth_stencil_state *)depth_stencil;
134 void *depth_stencil)
136 FREE(depth_stencil);
124 svga_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
133 svga_delete_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_depthstencil.c125 void *depth_stencil)
129 svga->curr.depth = (const struct svga_depth_stencil_state *)depth_stencil;
134 void *depth_stencil)
136 FREE(depth_stencil);
124 svga_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument
133 svga_delete_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil) argument

Completed in 285 milliseconds

12