blob: fede0a54595189c7a5e0ba8cd51fc87bd115af84 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// SPDX-License-Identifier: MIT
/* Copyright © 2024 Intel Corporation */
#include "gem/i915_gem_object.h"
#include "intel_bo.h"
bool intel_bo_is_tiled(struct drm_gem_object *obj)
{
return i915_gem_object_is_tiled(to_intel_bo(obj));
}
|