From b8af349e97f9177547170f3bf60ea82e7608a9b5 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 13 Jul 2021 00:36:15 +0100 Subject: [PATCH] waffle: use same version API across programs None of them uses the fancy new features, but hey at least we're consistent across the project. Signed-off-by: Emil Velikov (cherry picked from commit ebcd4fabd87d88576b319ad1c30b7ae4679d9f90) --- examples/gl_basic.c | 2 +- examples/simple-x11-egl.c | 2 +- src/utils/wflinfo.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/gl_basic.c b/examples/gl_basic.c index 4408744..e0973bf 100644 --- a/examples/gl_basic.c +++ b/examples/gl_basic.c @@ -34,7 +34,7 @@ /// each buffer swap. #define _POSIX_C_SOURCE 199309L // glibc feature macro for nanosleep. -#define WAFFLE_API_VERSION 0x0106 +#define WAFFLE_API_VERSION 0x0108 #define WAFFLE_API_EXPERIMENTAL #include diff --git a/examples/simple-x11-egl.c b/examples/simple-x11-egl.c index c08fc04..82f2282 100644 --- a/examples/simple-x11-egl.c +++ b/examples/simple-x11-egl.c @@ -33,7 +33,7 @@ /// This example is too simple; it does not perform proper error checking. For /// a complete example with error checking, see gl_basic.c. -#define WAFFLE_API_VERSION 0x0106 +#define WAFFLE_API_VERSION 0x0108 #define WAFFLE_API_EXPERIMENTAL #include diff --git a/src/utils/wflinfo.c b/src/utils/wflinfo.c index 1cac580..624e373 100644 --- a/src/utils/wflinfo.c +++ b/src/utils/wflinfo.c @@ -32,7 +32,7 @@ /// 2. Create an OpenGL context. /// 3. Print information about the context. -#define WAFFLE_API_VERSION 0x0106 +#define WAFFLE_API_VERSION 0x0108 #include #include -- 2.11.4.GIT