Fix includes and typos in new backends

This commit is contained in:
Yuxuan Shui
2019-01-27 19:34:26 +00:00
parent 22f0d10c65
commit d92a546beb
4 changed files with 13 additions and 8 deletions

View File

@ -9,24 +9,24 @@
*
*/
#include <assert.h>
#include <GL/glx.h>
#include <stdbool.h>
#include <xcb/xcb.h>
#include <xcb/composite.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <pixman.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <xcb/composite.h>
#include <xcb/xcb.h>
#include "backend/backend.h"
#include "backend/gl/gl_common.h"
#include "common.h"
#include "compiler.h"
#include "config.h"
#include "log.h"
#include "region.h"
#include "utils.h"
#include "win.h"
#include "config.h"
/// @brief Wrapper of a GLX FBConfig.
typedef struct glx_fbconfig {