aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_realize.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_realize.c')
-rw-r--r--test/test_realize.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_realize.c b/test/test_realize.c
index cf2cde6..4bdafae 100644
--- a/test/test_realize.c
+++ b/test/test_realize.c
@@ -22,7 +22,7 @@
typedef enum {
START,
- CREATED,
+ REALIZED,
} State;
typedef struct {
@@ -42,9 +42,9 @@ onEvent(PuglView* view, const PuglEvent* event)
}
switch (event->type) {
- case PUGL_CREATE:
+ case PUGL_REALIZE:
assert(test->state == START);
- test->state = CREATED;
+ test->state = REALIZED;
break;
default:
break;
@@ -77,7 +77,7 @@ main(int argc, char** argv)
// Create initially invisible window
assert(!puglRealize(test.view));
assert(!puglGetVisible(test.view));
- while (test.state < CREATED) {
+ while (test.state < REALIZED) {
assert(!puglUpdate(test.world, -1.0));
}