aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 21:26:35 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 21:26:35 +0100
commitf6ca60606561ddbe5dab526ab1bc6b89f6dbe082 (patch)
tree41b089efcad6d691f348cc05af193e583afe2380 /examples
parent1c365945ed2ebd5b9f54eb0c8c5c1c6d97cad712 (diff)
downloadpugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.tar.gz
pugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.tar.bz2
pugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.zip
Clean up includes
Diffstat (limited to 'examples')
-rw-r--r--examples/cube_view.h3
-rw-r--r--examples/demo_utils.h2
-rw-r--r--examples/pugl_vulkan_cxx_demo.cpp1
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/cube_view.h b/examples/cube_view.h
index e0c86eb..71ae88d 100644
--- a/examples/cube_view.h
+++ b/examples/cube_view.h
@@ -22,6 +22,9 @@
#include "demo_utils.h"
#include "pugl/gl.h"
+#include "pugl/pugl.h"
+
+#include <stdbool.h>
// clang-format off
diff --git a/examples/demo_utils.h b/examples/demo_utils.h
index e76d304..2dda756 100644
--- a/examples/demo_utils.h
+++ b/examples/demo_utils.h
@@ -20,9 +20,7 @@
#include "pugl/pugl.h"
#include <math.h>
-#include <stdint.h>
#include <stdio.h>
-#include <string.h>
typedef struct {
double lastReportTime;
diff --git a/examples/pugl_vulkan_cxx_demo.cpp b/examples/pugl_vulkan_cxx_demo.cpp
index 3dab5ce..9fbf7af 100644
--- a/examples/pugl_vulkan_cxx_demo.cpp
+++ b/examples/pugl_vulkan_cxx_demo.cpp
@@ -39,7 +39,6 @@
#include "pugl/vulkan.hpp"
#include <vulkan/vk_platform.h>
-#include <vulkan/vulkan_core.h>
#include <algorithm>
#include <array>