diff options
author | David Robillard <d@drobilla.net> | 2021-01-02 21:26:35 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-02 21:26:35 +0100 |
commit | f6ca60606561ddbe5dab526ab1bc6b89f6dbe082 (patch) | |
tree | 41b089efcad6d691f348cc05af193e583afe2380 /examples | |
parent | 1c365945ed2ebd5b9f54eb0c8c5c1c6d97cad712 (diff) | |
download | pugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.tar.gz pugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.tar.bz2 pugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.zip |
Clean up includes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cube_view.h | 3 | ||||
-rw-r--r-- | examples/demo_utils.h | 2 | ||||
-rw-r--r-- | examples/pugl_vulkan_cxx_demo.cpp | 1 |
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> |