HomeSort by relevance Sort by last modified time
    Searched refs:stencil_mt (Results 1 - 14 of 14) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_copy_image.c 126 assert((src_mt->stencil_mt != NULL) == (dst_mt->stencil_mt != NULL));
128 if (dst_mt->stencil_mt) {
129 copy_miptrees(brw, src_mt->stencil_mt, src_x, src_y, src_z, src_level,
130 dst_mt->stencil_mt, dst_x, dst_y, dst_z, dst_level,
gen8_depth_state.c 43 struct intel_mipmap_tree *stencil_mt,
56 if (!depth_mt && !stencil_mt && brw->no_depth_or_stencil) {
68 (stencil_mt != NULL && stencil_writable) << 27 |
103 if (stencil_mt == NULL) {
115 (stencil_mt->surf.row_pitch - 1));
116 OUT_RELOC64(stencil_mt->bo, RELOC_WRITE, 0);
117 OUT_BATCH(stencil_mt->surf.array_pitch_el_rows >> 2);
127 brw->no_depth_or_stencil = !depth_mt && !stencil_mt;
137 struct intel_mipmap_tree *stencil_mt,
150 const struct intel_mipmap_tree *mt = depth_mt ? depth_mt : stencil_mt;
    [all...]
gen6_depth_state.c 42 struct intel_mipmap_tree *stencil_mt,
53 const struct intel_mipmap_tree *mt = depth_mt ? depth_mt : stencil_mt;
181 assert(stencil_mt->format == MESA_FORMAT_S_UINT8);
182 assert(stencil_mt->surf.size > 0);
185 isl_surf_get_image_offset_B_tile_sa(&stencil_mt->surf,
190 OUT_BATCH(stencil_mt->surf.row_pitch - 1);
191 OUT_RELOC(stencil_mt->bo, RELOC_WRITE, offset);
gen7_misc_state.c 37 struct intel_mipmap_tree *stencil_mt,
51 const struct intel_mipmap_tree *mt = depth_mt ? depth_mt : stencil_mt;
112 ((stencil_mt != NULL && brw->stencil_write_enabled) << 27) |
157 if (stencil_mt == NULL) {
164 stencil_mt->r8stencil_needs_update = true;
171 (stencil_mt->surf.row_pitch - 1));
172 OUT_RELOC(stencil_mt->bo, RELOC_WRITE, 0);
brw_misc_state.c 113 !srb->mt->stencil_mt &&
130 if (irb->mt->stencil_mt)
131 return irb->mt->stencil_mt;
267 struct intel_mipmap_tree *stencil_mt = get_stencil_miptree(stencil_irb); local
277 if (stencil_mt) {
278 separate_stencil = stencil_mt->format == MESA_FORMAT_S_UINT8;
289 depth_mt = stencil_mt;
337 if (stencil_mt)
338 brw_cache_flush_for_depth(brw, stencil_mt->bo);
342 stencil_mt, hiz, separate_stencil
    [all...]
intel_fbo.c 643 struct intel_mipmap_tree *depth_mt = NULL, *stencil_mt = NULL; local
653 stencil_mt = stencilRb->mt;
654 if (stencil_mt->stencil_mt)
655 stencil_mt = stencil_mt->stencil_mt;
658 if (depth_mt && stencil_mt) {
666 const unsigned s_width = stencil_mt->surf.phys_level0_sa.width;
667 const unsigned s_height = stencil_mt->surf.phys_level0_sa.height
    [all...]
brw_clear.c 292 if (mt && mt->stencil_mt)
293 mt->stencil_mt->r8stencil_needs_update = true;
intel_mipmap_tree.c 657 mt->stencil_mt = make_surface(brw, mt->target, MESA_FORMAT_S_UINT8,
669 if (!mt->stencil_mt)
672 mt->stencil_mt->r8stencil_needs_update = true;
    [all...]
brw_blorp.c 478 if (buffer_bit == GL_STENCIL_BUFFER_BIT && mt->stencil_mt)
479 mt = mt->stencil_mt;
721 if (src_mt->stencil_mt)
722 src_mt = src_mt->stencil_mt;
723 if (dst_mt->stencil_mt)
724 dst_mt = dst_mt->stencil_mt;
1412 struct intel_mipmap_tree *stencil_mt = NULL; local
    [all...]
brw_context.h 739 struct intel_mipmap_tree *stencil_mt,
    [all...]
intel_mipmap_tree.h 307 struct intel_mipmap_tree *stencil_mt; member in struct:intel_mipmap_tree
brw_wm_surface_state.c 535 assert(mt->r8stencil_mt && !mt->stencil_mt->r8stencil_needs_update);
538 mt = mt->stencil_mt;
    [all...]
intel_screen.c 525 image->has_depthstencil = irb->mt->stencil_mt? true : false;
582 image->has_depthstencil = iobj->mt->stencil_mt? true : false;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_fbo.c 555 struct intel_mipmap_tree *depth_mt = NULL, *stencil_mt = NULL; local
565 stencil_mt = stencilRb->mt;
567 if (depth_mt && stencil_mt) {
572 if (depth_mt == stencil_mt) {

Completed in 298 milliseconds