aboutsummaryrefslogtreecommitdiffstats
path: root/renderer.c
diff options
context:
space:
mode:
Diffstat (limited to 'renderer.c')
-rw-r--r--renderer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/renderer.c b/renderer.c
index 570ab34..7466412 100644
--- a/renderer.c
+++ b/renderer.c
@@ -445,6 +445,7 @@ r_canvas_draw_circle(int id, int x, int y, int r, mu_Color color) {
canvas = &canvas_list.items[id];
+ #pragma omp parallel for
for (dy = -r; dy <= r; dy++) {
for (dx = -r; dx <= r; dx++) {
if (dx*dx + dy*dy <= r*r) {