libliftoff/layer.c

77 lines
1.6 KiB
C
Raw Normal View History

2019-08-21 22:07:37 +02:00
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "private.h"
struct liftoff_layer *liftoff_layer_create(struct liftoff_output *output)
2019-08-21 22:07:37 +02:00
{
struct liftoff_layer *layer;
2019-08-21 22:07:37 +02:00
layer = calloc(1, sizeof(*layer));
if (layer == NULL) {
return NULL;
}
layer->output = output;
liftoff_list_insert(output->layers.prev, &layer->link);
2019-08-21 22:07:37 +02:00
return layer;
}
void liftoff_layer_destroy(struct liftoff_layer *layer)
2019-08-21 22:07:37 +02:00
{
free(layer->props);
liftoff_list_remove(&layer->link);
2019-08-21 22:07:37 +02:00
free(layer);
}
struct liftoff_layer_property *layer_get_property(struct liftoff_layer *layer,
const char *name)
2019-08-21 22:07:37 +02:00
{
size_t i;
for (i = 0; i < layer->props_len; i++) {
if (strcmp(layer->props[i].name, name) == 0) {
return &layer->props[i];
}
}
return NULL;
}
void liftoff_layer_set_property(struct liftoff_layer *layer, const char *name,
uint64_t value)
2019-08-21 22:07:37 +02:00
{
struct liftoff_layer_property *props;
struct liftoff_layer_property *prop;
2019-08-21 22:07:37 +02:00
/* TODO: better error handling */
if (strcmp(name, "CRTC_ID") == 0) {
fprintf(stderr, "refusing to set a layer's CRTC_ID\n");
return;
}
prop = layer_get_property(layer, name);
if (prop == NULL) {
props = realloc(layer->props, (layer->props_len + 1)
* sizeof(struct liftoff_layer_property));
2019-08-21 22:07:37 +02:00
if (props == NULL) {
perror("realloc");
return;
}
layer->props = props;
layer->props_len++;
prop = &layer->props[layer->props_len - 1];
memset(prop, 0, sizeof(*prop));
strncpy(prop->name, name, sizeof(prop->name) - 1);
}
prop->value = value;
}
uint32_t liftoff_layer_get_plane_id(struct liftoff_layer *layer)
2019-08-21 22:07:37 +02:00
{
if (layer->plane == NULL) {
return 0;
}
return layer->plane->id;
}