Home
last modified time | relevance | path

Searched refs:stencil_ref (Results 1 – 25 of 88) sorted by relevance

1234

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
Dlp_state_blend.c158 const struct pipe_stencil_ref *stencil_ref) in llvmpipe_set_stencil_ref() argument
162 if(!stencil_ref) in llvmpipe_set_stencil_ref()
165 if(memcmp(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref) == 0) in llvmpipe_set_stencil_ref()
170 memcpy(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref); in llvmpipe_set_stencil_ref()
Dlp_context.h72 struct pipe_stencil_ref stencil_ref; member
Dlp_state_derived.c172 llvmpipe->stencil_ref.ref_value); in llvmpipe_update_derived()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_blend.c158 const struct pipe_stencil_ref *stencil_ref) in llvmpipe_set_stencil_ref() argument
162 if(!stencil_ref) in llvmpipe_set_stencil_ref()
165 if(memcmp(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref) == 0) in llvmpipe_set_stencil_ref()
170 memcpy(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref); in llvmpipe_set_stencil_ref()
Dlp_context.h72 struct pipe_stencil_ref stencil_ref; member
Dlp_state_derived.c172 llvmpipe->stencil_ref.ref_value); in llvmpipe_update_derived()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
Dr300_render_stencilref.c51 r300->stencil_ref.ref_value[0] != r300->stencil_ref.ref_value[1]); in r300_stencilref_needed()
64 sr->ref_value_front = r300->stencil_ref.ref_value[0]; in r300_stencilref_begin()
81 r300->stencil_ref.ref_value[0] = r300->stencil_ref.ref_value[1]; in r300_stencilref_switch_side()
97 r300->stencil_ref.ref_value[0] = sr->ref_value_front; in r300_stencilref_end()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_render_stencilref.c51 r300->stencil_ref.ref_value[0] != r300->stencil_ref.ref_value[1]); in r300_stencilref_needed()
64 sr->ref_value_front = r300->stencil_ref.ref_value[0]; in r300_stencilref_begin()
81 r300->stencil_ref.ref_value[0] = r300->stencil_ref.ref_value[1]; in r300_stencilref_switch_side()
97 r300->stencil_ref.ref_value[0] = sr->ref_value_front; in r300_stencilref_end()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
Dsp_state_blend.c117 const struct pipe_stencil_ref *stencil_ref) in softpipe_set_stencil_ref() argument
121 softpipe->stencil_ref = *stencil_ref; in softpipe_set_stencil_ref()
Dsp_context.h76 struct pipe_stencil_ref stencil_ref; member
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_state_blend.c117 const struct pipe_stencil_ref *stencil_ref) in softpipe_set_stencil_ref() argument
121 softpipe->stencil_ref = *stencil_ref; in softpipe_set_stencil_ref()
Dsp_context.h76 struct pipe_stencil_ref stencil_ref; member
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_pipe_depthstencil.c141 const struct pipe_stencil_ref *stencil_ref ) in svga_set_stencil_ref() argument
145 svga->curr.stencil_ref = *stencil_ref; in svga_set_stencil_ref()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
Dsvga_pipe_depthstencil.c141 const struct pipe_stencil_ref *stencil_ref ) in svga_set_stencil_ref() argument
145 svga->curr.stencil_ref = *stencil_ref; in svga_set_stencil_ref()
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
Dst_cb_clear.c263 struct pipe_stencil_ref stencil_ref; in clear_with_quad() local
264 memset(&stencil_ref, 0, sizeof(stencil_ref)); in clear_with_quad()
272 stencil_ref.ref_value[0] = ctx->Stencil.Clear; in clear_with_quad()
273 cso_set_stencil_ref(st->cso_context, &stencil_ref); in clear_with_quad()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_clear.c263 struct pipe_stencil_ref stencil_ref; in clear_with_quad() local
264 memset(&stencil_ref, 0, sizeof(stencil_ref)); in clear_with_quad()
272 stencil_ref.ref_value[0] = ctx->Stencil.Clear; in clear_with_quad()
273 cso_set_stencil_ref(st->cso_context, &stencil_ref); in clear_with_quad()
/external/mesa3d/src/gallium/auxiliary/cso_cache/
Dcso_context.c119 struct pipe_stencil_ref stencil_ref, stencil_ref_saved; member
707 if (memcmp(&ctx->stencil_ref, sr, sizeof(ctx->stencil_ref))) { in cso_set_stencil_ref()
708 ctx->stencil_ref = *sr; in cso_set_stencil_ref()
716 ctx->stencil_ref_saved = ctx->stencil_ref; in cso_save_stencil_ref()
722 if (memcmp(&ctx->stencil_ref, &ctx->stencil_ref_saved, in cso_restore_stencil_ref()
723 sizeof(ctx->stencil_ref))) { in cso_restore_stencil_ref()
724 ctx->stencil_ref = ctx->stencil_ref_saved; in cso_restore_stencil_ref()
725 ctx->pipe->set_stencil_ref(ctx->pipe, &ctx->stencil_ref); in cso_restore_stencil_ref()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
Dcso_context.c119 struct pipe_stencil_ref stencil_ref, stencil_ref_saved; member
707 if (memcmp(&ctx->stencil_ref, sr, sizeof(ctx->stencil_ref))) { in cso_set_stencil_ref()
708 ctx->stencil_ref = *sr; in cso_set_stencil_ref()
716 ctx->stencil_ref_saved = ctx->stencil_ref; in cso_save_stencil_ref()
722 if (memcmp(&ctx->stencil_ref, &ctx->stencil_ref_saved, in cso_restore_stencil_ref()
723 sizeof(ctx->stencil_ref))) { in cso_restore_stencil_ref()
724 ctx->stencil_ref = ctx->stencil_ref_saved; in cso_restore_stencil_ref()
725 ctx->pipe->set_stencil_ref(ctx->pipe, &ctx->stencil_ref); in cso_restore_stencil_ref()
/external/mesa3d/src/gallium/drivers/i915/
Di915_state_immediate.c133 LIS5 |= i915->stencil_ref.ref_value[0] << S5_STENCIL_REF_SHIFT; in upload_S5()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
Di915_state_immediate.c133 LIS5 |= i915->stencil_ref.ref_value[0] << S5_STENCIL_REF_SHIFT; in upload_S5()
Di915_state_dynamic.c118 bfo[0] |= i915->stencil_ref.ref_value[1] << BFO_STENCIL_REF_SHIFT; in upload_BFO()
/external/mesa3d/src/gallium/drivers/nv30/
Dnv30_context.h100 struct pipe_stencil_ref stencil_ref; member
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
Dnv30_context.h100 struct pipe_stencil_ref stencil_ref; member
/external/mesa3d/src/gallium/drivers/radeonsi/
Dradeonsi_pipe.h128 struct pipe_stencil_ref stencil_ref; member
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
Dradeonsi_pipe.h128 struct pipe_stencil_ref stencil_ref; member

1234