99ce270a1e
This file is a monster, let's start simple, the cursor plane code seems pretty standalone, and splits out easily enough. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com> [Jani: cleaned up intel_cursor.h a bit.] Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20201221090449.8288-4-jani.nikula@intel.com
18 lines
302 B
C
18 lines
302 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _INTEL_CURSOR_H_
|
|
#define _INTEL_CURSOR_H_
|
|
|
|
enum pipe;
|
|
struct drm_i915_private;
|
|
struct intel_plane;
|
|
|
|
struct intel_plane *
|
|
intel_cursor_plane_create(struct drm_i915_private *dev_priv,
|
|
enum pipe pipe);
|
|
|
|
#endif
|