comparison gldragon.cpp @ 39:4de11a54215a

Remove useless include. SDL2 provides these.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Dec 2019 12:47:29 +0200
parents 372fa249ce26
children 3c7e1d3fa5a2
comparison
equal deleted inserted replaced
38:372fa249ce26 39:4de11a54215a
8 // Originally based on 'glxdragon' Copyright (c) 2009, Thomas Trummer 8 // Originally based on 'glxdragon' Copyright (c) 2009, Thomas Trummer
9 // 9 //
10 #include <SDL.h> 10 #include <SDL.h>
11 #include <SDL_opengl.h> 11 #include <SDL_opengl.h>
12 #include <GL/glu.h> 12 #include <GL/glu.h>
13 #include <GL/glext.h>
14 13
15 #include "dmutil.h" 14 #include "dmutil.h"
16 #include "dmmodel.h" 15 #include "dmmodel.h"
17 16
18 17
28 */ 27 */
29 bool optUseShaders = false; 28 bool optUseShaders = false;
30 int optWidth = SET_DEF_WIDTH, 29 int optWidth = SET_DEF_WIDTH,
31 optHeight = SET_DEF_HEIGHT, 30 optHeight = SET_DEF_HEIGHT,
32 optVSyncMode = 1; 31 optVSyncMode = 1;
33
34 32
35 33
36 /* Globals 34 /* Globals
37 */ 35 */
38 SDL_Window *dmWindow = NULL; 36 SDL_Window *dmWindow = NULL;