File: backends.c

package info (click to toggle)
buffybox 3.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 108,056 kB
  • sloc: ansic: 357,060; cpp: 42,613; python: 10,534; xml: 1,214; sh: 823; asm: 665; ruby: 487; makefile: 66
file content (32 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
 * Copyright 2022 Eugenio Paolantonio (g7)
 * SPDX-License-Identifier: GPL-3.0-or-later
 */


#include "backends.h"

#include "log.h"

#include <string.h>

static const char *backends[] = {
#if LV_USE_LINUX_FBDEV
    "fbdev",
#endif
#if LV_USE_LINUX_DRM
    "drm",
#endif
    NULL
};

bbx_backends_backend_id_t bbx_backends_find_backend_with_name(const char *name) {
    for (int i = 0; backends[i] != NULL; ++i) {
        if (strcmp(backends[i], name) == 0) {
            bbx_log(BBX_LOG_LEVEL_VERBOSE, "Found backend: %s\n", name);
            return i;
        }
    }
    bbx_log(BBX_LOG_LEVEL_WARNING, "Backend %s not found\n", name);
    return BBX_BACKENDS_BACKEND_NONE;
}