mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
17 lines
477 B
C
17 lines
477 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
#ifndef LABWC_SURFACE_HELPERS_H
|
||
|
|
#define LABWC_SURFACE_HELPERS_H
|
||
|
|
|
||
|
|
struct wlr_surface;
|
||
|
|
struct wlr_layer_surface_v1;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* subsurface_parent_layer() - Get wlr_layer_surface from layer-subsurface
|
||
|
|
* @wlr_surface: The wlr_surface of the wlr_subsurface for which to get the
|
||
|
|
* layer-surface.
|
||
|
|
*/
|
||
|
|
struct wlr_layer_surface_v1 *subsurface_parent_layer(
|
||
|
|
struct wlr_surface *wlr_surface);
|
||
|
|
|
||
|
|
#endif /* LABWC_SURFACE_HELPERS_H */
|