mirror of
https://github.com/stasenso/rp_pico_display_engine.git
synced 2026-06-27 05:42:41 +03:00
20 lines
258 B
C
20 lines
258 B
C
#pragma once
|
|
|
|
#include "display/render/context.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void render_bezier(
|
|
render_ctx_t* ctx,
|
|
const int* points_x,
|
|
const int* points_y,
|
|
size_t num_points,
|
|
uint16_t color
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|