1*5ca02815Sjsg /* SPDX-License-Identifier: MIT */ 2*5ca02815Sjsg /* 3*5ca02815Sjsg * Copyright © 2020 Intel Corporation 4*5ca02815Sjsg */ 5*5ca02815Sjsg 6*5ca02815Sjsg #ifndef _INTEL_CURSOR_H_ 7*5ca02815Sjsg #define _INTEL_CURSOR_H_ 8*5ca02815Sjsg 9*5ca02815Sjsg enum pipe; 10*5ca02815Sjsg struct drm_i915_private; 11*5ca02815Sjsg struct intel_plane; 12*5ca02815Sjsg 13*5ca02815Sjsg struct intel_plane * 14*5ca02815Sjsg intel_cursor_plane_create(struct drm_i915_private *dev_priv, 15*5ca02815Sjsg enum pipe pipe); 16*5ca02815Sjsg 17*5ca02815Sjsg #endif 18