From: Nanley Chery Date: Sat, 9 Jun 2018 23:44:15 +0000 (-0700) Subject: i965/miptree: Inline make_separate_stencil X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7784a9ceacb11d32296bf87e4f5e5e51c5467222;p=mesa.git i965/miptree: Inline make_separate_stencil Note that the separate stencil miptree now has the same alloc_flag as the depth component. Only stencil renderbuffers (as opposed to textures) have BO_ALLOC_BUSY. v2: Add note about BO_ALLOC_BUSY in message (Topi). Reviewed-by: Topi Pohjolainen --- diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index b537e2bf4fd..6d1f8d5a6df 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -649,28 +649,6 @@ fail: return NULL; } -static bool -make_separate_stencil_surface(struct brw_context *brw, - struct intel_mipmap_tree *mt) -{ - mt->stencil_mt = make_surface(brw, mt->target, MESA_FORMAT_S_UINT8, - 0, mt->surf.levels - 1, - mt->surf.logical_level0_px.width, - mt->surf.logical_level0_px.height, - mt->surf.dim == ISL_SURF_DIM_3D ? - mt->surf.logical_level0_px.depth : - mt->surf.logical_level0_px.array_len, - mt->surf.samples, ISL_TILING_W_BIT, - ISL_SURF_USAGE_STENCIL_BIT | - ISL_SURF_USAGE_TEXTURE_BIT, - BO_ALLOC_BUSY, 0, NULL); - - if (!mt->stencil_mt) - return false; - - return true; -} - /* Return the usual surface usage flags for the given format. */ static isl_surf_usage_flags_t mt_surf_usage(mesa_format format) @@ -730,7 +708,12 @@ miptree_create(struct brw_context *brw, return NULL; if (needs_separate_stencil(brw, mt, format)) { - if (!make_separate_stencil_surface(brw, mt)) { + mt->stencil_mt = + make_surface(brw, target, MESA_FORMAT_S_UINT8, first_level, last_level, + width0, height0, depth0, num_samples, + ISL_TILING_W_BIT, mt_surf_usage(MESA_FORMAT_S_UINT8), + alloc_flags, 0, NULL); + if (mt->stencil_mt == NULL) { intel_miptree_release(&mt); return NULL; }