mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Move the max cursor size initialization into intel_cursor.c so that all the platform specific details about cursors are concentrated in one file. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patch.msgid.link/20251107181126.5743-9-ville.syrjala@linux.intel.com Reviewed-by: Jani Nikula <jani.nikula@intel.com>
23 lines
442 B
C
23 lines
442 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _INTEL_CURSOR_H_
|
|
#define _INTEL_CURSOR_H_
|
|
|
|
enum pipe;
|
|
struct intel_display;
|
|
struct intel_plane;
|
|
struct kthread_work;
|
|
|
|
struct intel_plane *
|
|
intel_cursor_plane_create(struct intel_display *display,
|
|
enum pipe pipe);
|
|
|
|
void intel_cursor_unpin_work(struct kthread_work *base);
|
|
|
|
void intel_cursor_mode_config_init(struct intel_display *display);
|
|
|
|
#endif
|