Skip to content
Snippets Groups Projects
Commit bca913c3 authored by Marek's avatar Marek
Browse files

Optimize circle drawing

I have no idea whether this is something the compiler wouldn't
automatically do, but it can't hurt to be explicit.
parent fccb6b79
No related branches found
No related tags found
1 merge request!175Optimize circle drawing
......@@ -135,12 +135,12 @@ void gfx_clear(struct gfx_region *reg)
void gfx_circle(struct gfx_region *reg, int x, int y, int r, int t, Color c)
{
int outer = (r + t) * (r + t);
int inner = r * r;
for (int y_ = y - r - t; y_ <= y + r + t; y_++) {
for (int x_ = x - r - t; x_ <= x + r + t; x_++) {
int dx = (x_ - x) * (x_ - x);
int dy = (y_ - y) * (y_ - y);
int outer = (r + t) * (r + t);
int inner = r * r;
int edge = ((dx + dy) >= inner) && ((dx + dy) <= outer);
if (edge)
gfx_setpixel(reg, x_, y_, c);
......@@ -150,11 +150,11 @@ void gfx_circle(struct gfx_region *reg, int x, int y, int r, int t, Color c)
void gfx_circle_fill(struct gfx_region *reg, int x, int y, int r, Color c)
{
int edge = r * r;
for (int y_ = y - r; y_ <= y + r; y_++) {
for (int x_ = x - r; x_ <= x + r; x_++) {
int dx = (x_ - x) * (x_ - x);
int dy = (y_ - y) * (y_ - y);
int edge = r * r;
int fill = (dx + dy) <= edge;
if (fill)
gfx_setpixel(reg, x_, y_, c);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment