f0rmz: new subproject to create a form/wizard setup thing
This commit is contained in:
parent
b12ce978b1
commit
47b046da73
36 changed files with 4693 additions and 241 deletions
37
shared/backends.c
Normal file
37
shared/backends.c
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/**
|
||||
* Copyright 2022 Eugenio Paolantonio (g7)
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
|
||||
#include "backends.h"
|
||||
|
||||
#include "../shared/log.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
|
||||
/**
|
||||
* Public interface
|
||||
*/
|
||||
|
||||
const char *bbx_backends_backends[] = {
|
||||
#if LV_USE_LINUX_FBDEV
|
||||
"fbdev",
|
||||
#endif /* LV_USE_LINUX_FBDEV */
|
||||
#if LV_USE_LINUX_DRM
|
||||
"drm",
|
||||
#endif /* LV_USE_LINUX_DRM */
|
||||
NULL
|
||||
};
|
||||
|
||||
bbx_backends_backend_id_t bbx_backends_find_backend_with_name(const char *name) {
|
||||
for (int i = 0; bbx_backends_backends[i] != NULL; ++i) {
|
||||
if (strcmp(bbx_backends_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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue