2025-09-23 01:48:35 -07:00
|
|
|
/**
|
|
|
|
|
* Copyright 2022 Eugenio Paolantonio (g7)
|
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef BBX_BACKENDS_H
|
|
|
|
|
#define BBX_BACKENDS_H
|
|
|
|
|
|
2025-09-27 23:23:41 +03:00
|
|
|
#include "lv_conf.h"
|
|
|
|
|
|
2025-11-29 21:37:51 +01:00
|
|
|
#if LV_USE_LINUX_FBDEV == 0 && LV_USE_LINUX_DRM == 0 && LV_USE_SDL == 0
|
2025-09-27 23:23:41 +03:00
|
|
|
#error Neither of graphical backends is enabled
|
|
|
|
|
#endif
|
2025-09-23 01:48:35 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Backend identifiers
|
|
|
|
|
*
|
|
|
|
|
* Only BBX_BACKENDS_BACKEND_NONE should have an explicit value assigned
|
|
|
|
|
*/
|
|
|
|
|
typedef enum {
|
|
|
|
|
BBX_BACKENDS_BACKEND_NONE = -1,
|
|
|
|
|
#if LV_USE_LINUX_FBDEV
|
|
|
|
|
BBX_BACKENDS_BACKEND_FBDEV,
|
2025-09-27 23:23:41 +03:00
|
|
|
#endif
|
2025-09-23 01:48:35 -07:00
|
|
|
#if LV_USE_LINUX_DRM
|
|
|
|
|
BBX_BACKENDS_BACKEND_DRM,
|
2025-09-27 23:23:41 +03:00
|
|
|
#endif
|
2025-11-29 21:37:51 +01:00
|
|
|
#if LV_USE_SDL
|
|
|
|
|
BBX_BACKENDS_BACKEND_SDL,
|
|
|
|
|
#endif
|
2025-09-23 01:48:35 -07:00
|
|
|
} bbx_backends_backend_id_t;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Find the first backend with a given name.
|
|
|
|
|
*
|
|
|
|
|
* @param name backend name
|
|
|
|
|
* @return ID of the first matching backend or BBX_BACKENDS_BACKEND_NONE if no backend matched
|
|
|
|
|
*/
|
|
|
|
|
bbx_backends_backend_id_t bbx_backends_find_backend_with_name(const char *name);
|
|
|
|
|
|
|
|
|
|
#endif /* BBX_BACKENDS_H */
|