| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/ |
| H A D | svga_pipe_depthstencil.c | 106 ds->stencil_mask, 145 ds->stencil_mask = templ->stencil[0].valuemask & 0xff; 164 ds->stencil_mask = templ->stencil[1].valuemask & 0xff;
|
| H A D | svga_state_rss.c | 163 EMIT_RS(svga, curr->stencil_mask, STENCILMASK); 197 EMIT_RS(svga, curr->stencil_mask, STENCILMASK);
|
| H A D | svga_context.h | 156 unsigned stencil_mask:8; member in struct:svga_depth_stencil_state
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/ |
| H A D | svga_pipe_depthstencil.c | 111 ds->stencil_mask, 154 ds->stencil_mask = templ->stencil[0].valuemask & 0xff; 173 ds->stencil_mask = templ->stencil[1].valuemask & 0xff;
|
| H A D | svga_state_rss.c | 163 EMIT_RS(svga, curr->stencil_mask, STENCILMASK); 197 EMIT_RS(svga, curr->stencil_mask, STENCILMASK);
|
| H A D | svga_context.h | 150 unsigned stencil_mask:8; member in struct:svga_depth_stencil_state
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/blorp/ |
| H A D | blorp.h | 189 uint8_t stencil_mask, uint8_t stencil_value); 223 uint8_t stencil_mask, uint8_t stencil_value);
|
| H A D | blorp_clear.c | 576 uint8_t stencil_mask, uint8_t stencil_value) 599 if (stencil_mask) { 603 params.stencil_mask = stencil_mask; 733 params.stencil_mask = 0xff; 805 uint8_t stencil_mask, uint8_t stencil_value) 843 if (stencil_mask) { 846 params.stencil_mask = stencil_mask; 569 blorp_clear_depth_stencil(struct blorp_batch * batch,const struct blorp_surf * depth,const struct blorp_surf * stencil,uint32_t level,uint32_t start_layer,uint32_t num_layers,uint32_t x0,uint32_t y0,uint32_t x1,uint32_t y1,bool clear_depth,float depth_value,uint8_t stencil_mask,uint8_t stencil_value) argument 797 blorp_clear_attachments(struct blorp_batch * batch,uint32_t binding_table_offset,enum isl_format depth_format,uint32_t num_samples,uint32_t start_layer,uint32_t num_layers,uint32_t x0,uint32_t y0,uint32_t x1,uint32_t y1,bool clear_color,union isl_color_value color_value,bool clear_depth,float depth_value,uint8_t stencil_mask,uint8_t stencil_value) argument
|
| H A D | blorp_priv.h | 189 uint8_t stencil_mask; member in struct:blorp_params
|
| H A D | blorp_genX_exec.h | 1136 ds.StencilWriteMask = params->stencil_mask;
|
| /xsrc/external/mit/MesaLib/dist/src/intel/blorp/ |
| H A D | blorp.h | 206 uint8_t stencil_mask, uint8_t stencil_value); 241 uint8_t stencil_mask, uint8_t stencil_value);
|
| H A D | blorp_clear.c | 686 uint8_t stencil_mask, uint8_t stencil_value) 696 if (stencil_mask != 0xff) 792 uint8_t stencil_mask, uint8_t stencil_value) 799 stencil_mask, 825 if (stencil_mask) { 829 params.stencil_mask = stencil_mask; 1043 params.stencil_mask = 0xff; 1116 uint8_t stencil_mask, uint8_t stencil_value) 1157 if (stencil_mask) { 681 blorp_clear_stencil_as_rgba(struct blorp_batch * batch,const struct blorp_surf * surf,uint32_t level,uint32_t start_layer,uint32_t num_layers,uint32_t x0,uint32_t y0,uint32_t x1,uint32_t y1,uint8_t stencil_mask,uint8_t stencil_value) argument 785 blorp_clear_depth_stencil(struct blorp_batch * batch,const struct blorp_surf * depth,const struct blorp_surf * stencil,uint32_t level,uint32_t start_layer,uint32_t num_layers,uint32_t x0,uint32_t y0,uint32_t x1,uint32_t y1,bool clear_depth,float depth_value,uint8_t stencil_mask,uint8_t stencil_value) argument 1108 blorp_clear_attachments(struct blorp_batch * batch,uint32_t binding_table_offset,enum isl_format depth_format,uint32_t num_samples,uint32_t start_layer,uint32_t num_layers,uint32_t x0,uint32_t y0,uint32_t x1,uint32_t y1,bool clear_color,union isl_color_value color_value,bool clear_depth,float depth_value,uint8_t stencil_mask,uint8_t stencil_value) argument [all...] |
| H A D | blorp_priv.h | 212 uint8_t stencil_mask; member in struct:blorp_params
|
| H A D | blorp_genX_exec.h | 1210 ds.StencilWriteMask = params->stencil_mask;
|
| H A D | blorp_blit.c | 2234 params->stencil_mask = 0xff;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/cso_cache/ |
| H A D | cso_context.h | 140 void cso_set_sample_mask(struct cso_context *cso, unsigned stencil_mask);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/cso_cache/ |
| H A D | cso_context.h | 134 void cso_set_sample_mask(struct cso_context *cso, unsigned stencil_mask);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/ |
| H A D | crocus_clear.c | 601 uint8_t stencil_mask = clear_stencil && stencil_res ? 0xff : 0; local in function:clear_depth_stencil 602 if (stencil_mask) { 616 stencil_mask, stencil); 627 if (stencil_mask) {
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/ |
| H A D | iris_clear.c | 609 uint8_t stencil_mask = clear_stencil && stencil_res ? 0xff : 0; local in function:clear_depth_stencil 610 if (stencil_mask) { 631 stencil_mask, stencil); 644 if (stencil_mask) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_blorp.c | 1453 uint8_t stencil_mask = 0; local in function:brw_blorp_clear_depth_stencil 1469 stencil_mask = ctx->Stencil.WriteMask[0] & 0xff; 1481 assert((mask & BUFFER_BIT_DEPTH) || stencil_mask); 1489 stencil_mask, ctx->Stencil.Clear); 1497 if (stencil_mask) {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_blorp.c | 1429 uint8_t stencil_mask = 0; local in function:brw_blorp_clear_depth_stencil 1445 stencil_mask = ctx->Stencil.WriteMask[0] & 0xff; 1457 assert((mask & BUFFER_BIT_DEPTH) || stencil_mask); 1465 stencil_mask, ctx->Stencil.Clear); 1473 if (stencil_mask) {
|