diff options
author | emersion <contact@emersion.fr> | 2018-03-19 23:16:29 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-19 23:16:29 +0100 |
commit | c41de2d1be5c8e814e99e3a1859cdaa885b6042d (patch) | |
tree | 3e62b8364c57805bd7c5dbb5de4c8522339e3231 /examples/simple.c | |
parent | a76cef475b6da9d4953e7b3503a35f01aa7c824e (diff) |
render: split render.h into wlr_renderer.h and wlr_texture.h
Diffstat (limited to 'examples/simple.c')
-rw-r--r-- | examples/simple.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/simple.c b/examples/simple.c index 90808b0f..79db4a0c 100644 --- a/examples/simple.c +++ b/examples/simple.c @@ -1,11 +1,11 @@ #define _POSIX_C_SOURCE 199309L -#include <string.h> +#include <GLES2/gl2.h> +#include <inttypes.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <time.h> -#include <inttypes.h> #include <wayland-server.h> -#include <GLES2/gl2.h> #include <wlr/backend.h> #include <wlr/backend/session.h> #include <wlr/types/wlr_output.h> |