mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 14:40:10 +01:00
i965/miptree: Use isl_tiling_to_i915_tiling()
and drop local copy. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
parent
a92e6ff315
commit
d8521b9960
2 changed files with 1 additions and 14 deletions
|
|
@ -28,19 +28,6 @@
|
|||
|
||||
#include "brw_context.h"
|
||||
|
||||
static inline unsigned
|
||||
isl_tiling_to_bufmgr_tiling(enum isl_tiling tiling)
|
||||
{
|
||||
if (tiling == ISL_TILING_X)
|
||||
return I915_TILING_X;
|
||||
|
||||
if (tiling == ISL_TILING_Y0)
|
||||
return I915_TILING_Y;
|
||||
|
||||
/* All other are unknown to buffer allocator. */
|
||||
return I915_TILING_NONE;
|
||||
}
|
||||
|
||||
bool
|
||||
intelEmitCopyBlit(struct brw_context *brw,
|
||||
GLuint cpp,
|
||||
|
|
|
|||
|
|
@ -782,7 +782,7 @@ make_surface(struct brw_context *brw, GLenum target, mesa_format format,
|
|||
if (!bo) {
|
||||
mt->bo = brw_bo_alloc_tiled(brw->bufmgr, "isl-miptree",
|
||||
mt->surf.size,
|
||||
isl_tiling_to_bufmgr_tiling(
|
||||
isl_tiling_to_i915_tiling(
|
||||
mt->surf.tiling),
|
||||
mt->surf.row_pitch, alloc_flags);
|
||||
if (!mt->bo)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue