diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mac_gl.m | 2 | ||||
-rw-r--r-- | src/mac_stub.m | 2 | ||||
-rw-r--r-- | src/mac_vulkan.m | 4 | ||||
-rw-r--r-- | src/win.c | 2 | ||||
-rw-r--r-- | src/win_gl.c | 2 | ||||
-rw-r--r-- | src/win_stub.c | 2 | ||||
-rw-r--r-- | src/win_vulkan.c | 4 | ||||
-rw-r--r-- | src/x11_cairo.c | 2 | ||||
-rw-r--r-- | src/x11_gl.c | 2 | ||||
-rw-r--r-- | src/x11_stub.c | 2 | ||||
-rw-r--r-- | src/x11_vulkan.c | 2 |
11 files changed, 13 insertions, 13 deletions
diff --git a/src/mac_gl.m b/src/mac_gl.m index 038b942..f8847c0 100644 --- a/src/mac_gl.m +++ b/src/mac_gl.m @@ -23,7 +23,7 @@ #include "mac.h" #include "stub.h" -#include "pugl/pugl_gl.h" +#include "pugl/gl.h" #ifndef __MAC_10_10 # define NSOpenGLProfileVersion4_1Core NSOpenGLProfileVersion3_2Core diff --git a/src/mac_stub.m b/src/mac_stub.m index b4d9058..576734f 100644 --- a/src/mac_stub.m +++ b/src/mac_stub.m @@ -23,7 +23,7 @@ #include "mac.h" #include "stub.h" -#include "pugl/pugl_stub.h" +#include "pugl/stub.h" #import <Cocoa/Cocoa.h> diff --git a/src/mac_vulkan.m b/src/mac_vulkan.m index 90d349b..39c7f29 100644 --- a/src/mac_vulkan.m +++ b/src/mac_vulkan.m @@ -26,8 +26,8 @@ #include "types.h" #include "pugl/pugl.h" -#include "pugl/pugl_stub.h" -#include "pugl/pugl_vulkan.h" +#include "pugl/stub.h" +#include "pugl/vulkan.h" #include <vulkan/vulkan_core.h> #include <vulkan/vulkan_macos.h> @@ -25,7 +25,7 @@ #include "stub.h" #include "pugl/pugl.h" -#include "pugl/pugl_stub.h" +#include "pugl/stub.h" #include <windows.h> #include <windowsx.h> diff --git a/src/win_gl.c b/src/win_gl.c index f011f5b..e46ece8 100644 --- a/src/win_gl.c +++ b/src/win_gl.c @@ -23,7 +23,7 @@ #include "types.h" #include "win.h" -#include "pugl/pugl_gl.h" +#include "pugl/gl.h" #include <windows.h> diff --git a/src/win_stub.c b/src/win_stub.c index e066e4d..2027836 100644 --- a/src/win_stub.c +++ b/src/win_stub.c @@ -18,7 +18,7 @@ #include "types.h" #include "win.h" -#include "pugl/pugl_stub.h" +#include "pugl/stub.h" PuglStatus puglWinStubConfigure(PuglView* view) diff --git a/src/win_vulkan.c b/src/win_vulkan.c index 5e3622e..eb20698 100644 --- a/src/win_vulkan.c +++ b/src/win_vulkan.c @@ -24,8 +24,8 @@ #include "types.h" #include "win.h" -#include "pugl/pugl_stub.h" -#include "pugl/pugl_vulkan.h" +#include "pugl/stub.h" +#include "pugl/vulkan.h" #include <vulkan/vulkan.h> #include <vulkan/vulkan_win32.h> diff --git a/src/x11_cairo.c b/src/x11_cairo.c index f0b38a9..abfabff 100644 --- a/src/x11_cairo.c +++ b/src/x11_cairo.c @@ -22,8 +22,8 @@ #include "types.h" #include "x11.h" +#include "pugl/cairo.h" #include "pugl/pugl.h" -#include "pugl/pugl_cairo.h" #include <X11/Xutil.h> #include <cairo-xlib.h> diff --git a/src/x11_gl.c b/src/x11_gl.c index 72c2421..bab85c6 100644 --- a/src/x11_gl.c +++ b/src/x11_gl.c @@ -23,8 +23,8 @@ #include "types.h" #include "x11.h" +#include "pugl/gl.h" #include "pugl/pugl.h" -#include "pugl/pugl_gl.h" #include <GL/glx.h> #include <X11/X.h> diff --git a/src/x11_stub.c b/src/x11_stub.c index 0f2e6d2..be66a88 100644 --- a/src/x11_stub.c +++ b/src/x11_stub.c @@ -14,7 +14,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "pugl/pugl_stub.h" +#include "pugl/stub.h" #include "stub.h" #include "types.h" diff --git a/src/x11_vulkan.c b/src/x11_vulkan.c index 1ca2ace..7004fd8 100644 --- a/src/x11_vulkan.c +++ b/src/x11_vulkan.c @@ -25,7 +25,7 @@ #include "x11.h" #include "pugl/pugl.h" -#include "pugl/pugl_vulkan.h" +#include "pugl/vulkan.h" #include <vulkan/vulkan_core.h> #include <vulkan/vulkan_xlib.h> |