mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2025-01-13 20:01:35 +01:00
Add missing static qualifiers
This commit is contained in:
parent
4bce10a7a5
commit
00f85c4eca
1 changed files with 5 additions and 5 deletions
10
display.c
10
display.c
|
@ -113,8 +113,8 @@ void hwc_display_destroy(struct hwc_display *display)
|
|||
free(display);
|
||||
}
|
||||
|
||||
struct hwc_plane_property *plane_get_property(struct hwc_plane *plane,
|
||||
const char *name)
|
||||
static struct hwc_plane_property *plane_get_property(struct hwc_plane *plane,
|
||||
const char *name)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
|
@ -126,8 +126,8 @@ struct hwc_plane_property *plane_get_property(struct hwc_plane *plane,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
bool layer_apply(struct hwc_layer *layer, struct hwc_plane *plane,
|
||||
drmModeAtomicReq *req)
|
||||
static bool layer_apply(struct hwc_layer *layer, struct hwc_plane *plane,
|
||||
drmModeAtomicReq *req)
|
||||
{
|
||||
size_t i;
|
||||
int ret;
|
||||
|
@ -169,7 +169,7 @@ bool layer_apply(struct hwc_layer *layer, struct hwc_plane *plane,
|
|||
return true;
|
||||
}
|
||||
|
||||
bool layer_choose_plane(struct hwc_layer *layer, drmModeAtomicReq *req)
|
||||
static bool layer_choose_plane(struct hwc_layer *layer, drmModeAtomicReq *req)
|
||||
{
|
||||
struct hwc_display *display;
|
||||
int cursor;
|
||||
|
|
Loading…
Reference in a new issue