Searched defs:stencil_ref (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_state_blend.c158 const struct pipe_stencil_ref *stencil_ref)
162 if(!stencil_ref)
165 if(memcmp(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref) == 0)
170 memcpy(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref);
157 llvmpipe_set_stencil_ref(struct pipe_context *pipe, const struct pipe_stencil_ref *stencil_ref) argument
H A Dlp_context.h72 struct pipe_stencil_ref stencil_ref; member in struct:llvmpipe_context
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_state_blend.c117 const struct pipe_stencil_ref *stencil_ref)
121 softpipe->stencil_ref = *stencil_ref;
116 softpipe_set_stencil_ref(struct pipe_context *pipe, const struct pipe_stencil_ref *stencil_ref) argument
H A Dsp_context.h76 struct pipe_stencil_ref stencil_ref; member in struct:softpipe_context
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_blend.c158 const struct pipe_stencil_ref *stencil_ref)
162 if(!stencil_ref)
165 if(memcmp(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref) == 0)
170 memcpy(&llvmpipe->stencil_ref, stencil_ref, sizeof *stencil_ref);
157 llvmpipe_set_stencil_ref(struct pipe_context *pipe, const struct pipe_stencil_ref *stencil_ref) argument
H A Dlp_context.h72 struct pipe_stencil_ref stencil_ref; member in struct:llvmpipe_context
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_state_blend.c117 const struct pipe_stencil_ref *stencil_ref)
121 softpipe->stencil_ref = *stencil_ref;
116 softpipe_set_stencil_ref(struct pipe_context *pipe, const struct pipe_stencil_ref *stencil_ref) argument
H A Dsp_context.h76 struct pipe_stencil_ref stencil_ref; member in struct:softpipe_context
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_clear.c263 struct pipe_stencil_ref stencil_ref; local
264 memset(&stencil_ref, 0, sizeof(stencil_ref));
272 stencil_ref.ref_value[0] = ctx->Stencil.Clear;
273 cso_set_stencil_ref(st->cso_context, &stencil_ref);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_clear.c263 struct pipe_stencil_ref stencil_ref; local
264 memset(&stencil_ref, 0, sizeof(stencil_ref));
272 stencil_ref.ref_value[0] = ctx->Stencil.Clear;
273 cso_set_stencil_ref(st->cso_context, &stencil_ref);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_context.h100 struct pipe_stencil_ref stencil_ref; member in struct:nv30_context
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_context.h144 struct pipe_stencil_ref stencil_ref; member in struct:nv50_context
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_context.h148 struct pipe_stencil_ref stencil_ref; member in struct:nvc0_context
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h128 struct pipe_stencil_ref stencil_ref; member in struct:r600_context
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_context.h100 struct pipe_stencil_ref stencil_ref; member in struct:nv30_context
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_context.h144 struct pipe_stencil_ref stencil_ref; member in struct:nv50_context
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_context.h148 struct pipe_stencil_ref stencil_ref; member in struct:nvc0_context
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h128 struct pipe_stencil_ref stencil_ref; member in struct:r600_context
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
H A Dcso_context.c119 struct pipe_stencil_ref stencil_ref, stencil_ref_saved; member in struct:cso_context
707 if (memcmp(&ctx->stencil_ref, sr, sizeof(ctx->stencil_ref))) {
708 ctx->stencil_ref = *sr;
716 ctx->stencil_ref_saved = ctx->stencil_ref;
722 if (memcmp(&ctx->stencil_ref, &ctx->stencil_ref_saved,
723 sizeof(ctx->stencil_ref))) {
724 ctx->stencil_ref = ctx->stencil_ref_saved;
725 ctx->pipe->set_stencil_ref(ctx->pipe, &ctx->stencil_ref);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
H A Dglhd_context.c435 const struct pipe_stencil_ref *stencil_ref)
441 stencil_ref);
434 galahad_context_set_stencil_ref(struct pipe_context *_pipe, const struct pipe_stencil_ref *stencil_ref) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
H A Did_context.c399 const struct pipe_stencil_ref *stencil_ref)
405 stencil_ref);
398 identity_set_stencil_ref(struct pipe_context *_pipe, const struct pipe_stencil_ref *stencil_ref) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_context.c595 const struct pipe_stencil_ref *stencil_ref)
602 stencil_ref);
594 rbug_set_stencil_ref(struct pipe_context *_pipe, const struct pipe_stencil_ref *stencil_ref) argument
/external/mesa3d/src/gallium/auxiliary/cso_cache/
H A Dcso_context.c119 struct pipe_stencil_ref stencil_ref, stencil_ref_saved; member in struct:cso_context
707 if (memcmp(&ctx->stencil_ref, sr, sizeof(ctx->stencil_ref))) {
708 ctx->stencil_ref = *sr;
716 ctx->stencil_ref_saved = ctx->stencil_ref;
722 if (memcmp(&ctx->stencil_ref, &ctx->stencil_ref_saved,
723 sizeof(ctx->stencil_ref))) {
724 ctx->stencil_ref = ctx->stencil_ref_saved;
725 ctx->pipe->set_stencil_ref(ctx->pipe, &ctx->stencil_ref);
/external/mesa3d/src/gallium/drivers/galahad/
H A Dglhd_context.c435 const struct pipe_stencil_ref *stencil_ref)
441 stencil_ref);
434 galahad_context_set_stencil_ref(struct pipe_context *_pipe, const struct pipe_stencil_ref *stencil_ref) argument
/external/mesa3d/src/gallium/drivers/identity/
H A Did_context.c399 const struct pipe_stencil_ref *stencil_ref)
405 stencil_ref);
398 identity_set_stencil_ref(struct pipe_context *_pipe, const struct pipe_stencil_ref *stencil_ref) argument

Completed in 3919 milliseconds

12