Searched refs:singlesample_mt (Results 1 - 4 of 4) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_fbo.h59 * For window system MSAA color buffers, the singlesample_mt is shared with
62 * we have to downsample out of mt into singlesample_mt. For depth and
63 * stencil buffers, the singlesample_mt is also private, and since we don't
65 * or glCopyTexImage()), we just temporarily allocate singlesample_mt when
68 struct intel_mipmap_tree *singlesample_mt; member in struct:intel_renderbuffer
99 * renderbuffer needs to be downsampled before using singlesample_mt.
110 * Set to true if singlesample_mt is temporary storage that persists only
H A Dintel_fbo.c65 intel_miptree_release(&irb->singlesample_mt);
71 * \brief Downsample a winsys renderbuffer from mt to singlesample_mt.
81 intel_miptree_updownsample(brw, irb->mt, irb->singlesample_mt);
86 * \brief Upsample a winsys renderbuffer from singlesample_mt to mt.
96 intel_miptree_updownsample(brw, irb->singlesample_mt, irb->mt);
133 * If it's a color miptree, there is a ->singlesample_mt which wraps the
142 if (!irb->singlesample_mt) {
143 irb->singlesample_mt =
147 if (!irb->singlesample_mt)
154 mt = irb->singlesample_mt;
[all...]
H A Dintel_mipmap_tree.c821 * irb->singlesample_mt).
830 struct intel_mipmap_tree *singlesample_mt = NULL; local
842 singlesample_mt = intel_miptree_create_for_bo(intel,
851 if (!singlesample_mt)
859 if (intel_tiling_supports_non_msrt_mcs(intel, singlesample_mt->tiling) &&
860 intel_miptree_supports_non_msrt_fast_clear(intel, singlesample_mt)) {
861 singlesample_mt->aux_disable &= ~INTEL_AUX_DISABLE_CCS;
866 irb->mt = singlesample_mt;
868 assert(!irb->singlesample_mt);
870 intel_miptree_release(&irb->singlesample_mt);
[all...]
H A Dbrw_context.c1620 last_mt = rb->singlesample_mt;
1707 last_mt = rb->singlesample_mt;

Completed in 173 milliseconds