Make plane_get_property static

This commit is contained in:
Simon Ser 2021-09-30 14:57:19 +02:00
parent 408b6e5463
commit 70eca070b6
2 changed files with 1 additions and 4 deletions

View file

@ -107,9 +107,6 @@ layer_has_fb(struct liftoff_layer *layer);
bool bool
layer_is_visible(struct liftoff_layer *layer); layer_is_visible(struct liftoff_layer *layer);
struct liftoff_plane_property *
plane_get_property(struct liftoff_plane *plane, const char *name);
int int
plane_apply(struct liftoff_plane *plane, struct liftoff_layer *layer, plane_apply(struct liftoff_plane *plane, struct liftoff_layer *layer,
drmModeAtomicReq *req); drmModeAtomicReq *req);

View file

@ -158,7 +158,7 @@ liftoff_plane_get_id(struct liftoff_plane *plane)
return plane->id; return plane->id;
} }
struct liftoff_plane_property * static struct liftoff_plane_property *
plane_get_property(struct liftoff_plane *plane, const char *name) plane_get_property(struct liftoff_plane *plane, const char *name)
{ {
size_t i; size_t i;