aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/pugl_cairo_demo.c2
-rw-r--r--examples/pugl_clipboard_demo.c2
-rw-r--r--examples/pugl_cpp_demo.cpp2
-rw-r--r--examples/pugl_cursor_demo.c2
-rw-r--r--examples/pugl_embed_demo.c2
-rw-r--r--examples/pugl_management_demo.c6
-rw-r--r--examples/pugl_print_events.c2
-rw-r--r--examples/pugl_shader_demo.c4
-rw-r--r--examples/pugl_vulkan_cpp_demo.cpp4
-rw-r--r--examples/pugl_vulkan_demo.c2
-rw-r--r--examples/pugl_window_demo.c2
11 files changed, 14 insertions, 16 deletions
diff --git a/examples/pugl_cairo_demo.c b/examples/pugl_cairo_demo.c
index 71e13e2..109149d 100644
--- a/examples/pugl_cairo_demo.c
+++ b/examples/pugl_cairo_demo.c
@@ -3,7 +3,7 @@
#include "demo_utils.h"
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/cairo.h>
#include <pugl/pugl.h>
diff --git a/examples/pugl_clipboard_demo.c b/examples/pugl_clipboard_demo.c
index 0defc65..04929ab 100644
--- a/examples/pugl_clipboard_demo.c
+++ b/examples/pugl_clipboard_demo.c
@@ -5,7 +5,7 @@
#include "cube_view.h"
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/gl.h>
#include <pugl/pugl.h>
diff --git a/examples/pugl_cpp_demo.cpp b/examples/pugl_cpp_demo.cpp
index 2d74213..9ba5723 100644
--- a/examples/pugl_cpp_demo.cpp
+++ b/examples/pugl_cpp_demo.cpp
@@ -4,7 +4,7 @@
#include "cube_view.h"
#include "demo_utils.h"
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/gl.hpp>
#include <pugl/pugl.h>
diff --git a/examples/pugl_cursor_demo.c b/examples/pugl_cursor_demo.c
index 8a09a44..6ddd5ad 100644
--- a/examples/pugl_cursor_demo.c
+++ b/examples/pugl_cursor_demo.c
@@ -1,7 +1,7 @@
// Copyright 2012-2020 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/gl.h>
#include <pugl/pugl.h>
diff --git a/examples/pugl_embed_demo.c b/examples/pugl_embed_demo.c
index 4e5fc75..70e00c2 100644
--- a/examples/pugl_embed_demo.c
+++ b/examples/pugl_embed_demo.c
@@ -4,7 +4,7 @@
#include "cube_view.h"
#include "demo_utils.h"
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/gl.h>
#include <pugl/pugl.h>
diff --git a/examples/pugl_management_demo.c b/examples/pugl_management_demo.c
index 61d7a51..c9b3f4a 100644
--- a/examples/pugl_management_demo.c
+++ b/examples/pugl_management_demo.c
@@ -1,11 +1,9 @@
// Copyright 2012-2023 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
-/*
- A demonstration of window types, states, and management.
-*/
+// A demonstration of window types, states, and management
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/cairo.h>
#include <pugl/pugl.h>
diff --git a/examples/pugl_print_events.c b/examples/pugl_print_events.c
index 0ec4e65..9445e50 100644
--- a/examples/pugl_print_events.c
+++ b/examples/pugl_print_events.c
@@ -1,7 +1,7 @@
// Copyright 2012-2020 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/pugl.h>
#include <pugl/stub.h>
diff --git a/examples/pugl_shader_demo.c b/examples/pugl_shader_demo.c
index 7f2fe6c..17135de 100644
--- a/examples/pugl_shader_demo.c
+++ b/examples/pugl_shader_demo.c
@@ -26,10 +26,10 @@
#include "rects.h"
#include "shader_utils.h"
-#include "puglutil/test_utils.h"
-
#include "glad/glad.h"
+#include <puglutil/test_utils.h>
+
#include <pugl/gl.h>
#include <pugl/pugl.h>
diff --git a/examples/pugl_vulkan_cpp_demo.cpp b/examples/pugl_vulkan_cpp_demo.cpp
index 9f1a3ed..83a6e47 100644
--- a/examples/pugl_vulkan_cpp_demo.cpp
+++ b/examples/pugl_vulkan_cpp_demo.cpp
@@ -18,10 +18,10 @@
#include "file_utils.h"
#include "rects.h"
-#include "puglutil/test_utils.h"
-
#include "sybok.hpp"
+#include <puglutil/test_utils.h>
+
#include <pugl/pugl.h>
#include <pugl/pugl.hpp>
#include <pugl/vulkan.hpp>
diff --git a/examples/pugl_vulkan_demo.c b/examples/pugl_vulkan_demo.c
index 6c59af0..75083c4 100644
--- a/examples/pugl_vulkan_demo.c
+++ b/examples/pugl_vulkan_demo.c
@@ -11,7 +11,7 @@
#include "demo_utils.h"
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/pugl.h>
#include <pugl/vulkan.h>
diff --git a/examples/pugl_window_demo.c b/examples/pugl_window_demo.c
index 6e87274..867f856 100644
--- a/examples/pugl_window_demo.c
+++ b/examples/pugl_window_demo.c
@@ -8,7 +8,7 @@
#include "cube_view.h"
#include "demo_utils.h"
-#include "puglutil/test_utils.h"
+#include <puglutil/test_utils.h>
#include <pugl/gl.h>
#include <pugl/pugl.h>