summaryrefslogtreecommitdiff
path: root/pugl_test.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-11-11 15:41:12 -0500
committerDavid Robillard <d@drobilla.net>2015-11-11 15:41:12 -0500
commit95a42df7a459fb089d2d55b52c7c84f2a296c0f4 (patch)
treeee94d5047914497d0322a53626d74fcd7b24e41e /pugl_test.c
parentb10540d1ffddb487e8dacb6dc77d4e0d8bdf6be0 (diff)
Add API to set window class name
Diffstat (limited to 'pugl_test.c')
-rw-r--r--pugl_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pugl_test.c b/pugl_test.c
index eb192c9..b534162 100644
--- a/pugl_test.c
+++ b/pugl_test.c
@@ -173,6 +173,7 @@ main(int argc, char** argv)
}
PuglView* view = puglInit(NULL, NULL);
+ puglInitWindowClass(view, "PuglTest");
puglInitWindowSize(view, 512, 512);
puglInitWindowMinSize(view, 256, 256);
puglInitResizable(view, resizable);