summaryrefslogtreecommitdiff
path: root/FrameRender/P_Square.c
diff options
context:
space:
mode:
Diffstat (limited to 'FrameRender/P_Square.c')
-rw-r--r--FrameRender/P_Square.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/FrameRender/P_Square.c b/FrameRender/P_Square.c
new file mode 100644
index 0000000..7865370
--- /dev/null
+++ b/FrameRender/P_Square.c
@@ -0,0 +1,22 @@
+#include "P_Square.h"
+#include "PixelCallback.h"
+#include <stdlib.h>
+#include <string.h>
+
+void Square_callback(Square* self, struct PixelContext* fc) {
+ if (0 <= fc->x && fc->x <= self->width &&
+ 0 <= fc->y && fc->y <= self->height)
+ {
+ ARGB_set(&fc->pixel, self->color);
+ }
+}
+
+PixelCallback* Square_setup(Square obj) {
+ PixelCallback* pca = malloc(sizeof(struct PixelCallback));
+
+ pca->callback = (PixelCallback_callback)Square_callback;
+ pca->callback_self = malloc(sizeof(obj));
+ memcpy(pca->callback_self, &obj, sizeof(obj));
+
+ return pca;
+}