This commit is contained in:
huxi
2025-12-03 11:12:34 +08:00
parent c23ae4f24c
commit bc195654bf
8163 changed files with 3799544 additions and 92 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef __CIRCLE_H__
#define __CIRCLE_H__
#include "typedef.h"
#include "generic/rect.h"
#define RADIUS_CIRCLE (0x7FFF)
struct circle_info {
s16 center_x;
s16 center_y;
s16 radius;
u16 color;
u8 alpha;
u8 dont_output;
};
void draw_circle(int center_x, int center_y, int radius,
u16 color, u8 alpha,
u8 *buf, u32 buflen, struct rect *disp, struct rect *ctrl, int draw_id, int dont_output);
#endif