diff options
Diffstat (limited to 'test/test_cairo.c')
-rw-r--r-- | test/test_cairo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_cairo.c b/test/test_cairo.c index 11d6cce..9abc51e 100644 --- a/test/test_cairo.c +++ b/test/test_cairo.c @@ -5,10 +5,10 @@ #undef NDEBUG -#include "test_utils.h" +#include <puglutil/test_utils.h> -#include "pugl/cairo.h" -#include "pugl/pugl.h" +#include <pugl/cairo.h> +#include <pugl/pugl.h> #include <cairo.h> @@ -66,7 +66,7 @@ main(int argc, char** argv) puglSetBackend(test.view, puglCairoBackend()); puglSetEventFunc(test.view, onEvent); puglSetSizeHint(test.view, PUGL_DEFAULT_SIZE, 256, 256); - puglSetPosition(test.view, 128, 896); + puglSetPositionHint(test.view, PUGL_DEFAULT_POSITION, 128, 896); puglShow(test.view, PUGL_SHOW_RAISE); // Drive event loop until the view gets exposed |