GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_backend_freertos.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2022 Cyril Hrubis <metan@ucw.cz>
4 */
5
6#ifndef BACKENDS_GP_BACKEND_FREERTOS_H
7#define BACKENDS_GP_BACKEND_FREERTOS_H
8
9#include <backends/gp_backend.h>
10
11gp_backend *gp_backend_rtos_init(gp_size w, gp_size h, gp_pixel pixel_type, void *fb);
12
13#endif /* BACKENDS_GP_BACKEND_FREERTOS_H */
uint32_t gp_pixel
Pixel integer value.
Definition gp_types.h:33
unsigned int gp_size
Integer type for sizes i.e. w, h, ...
Definition gp_types.h:24