mirror of https://github.com/bsnes-emu/bsnes.git
Use SDL’s OpenGL headers
This commit is contained in:
parent
b1edf540d8
commit
3d8e22ed50
|
@ -2,7 +2,6 @@
|
|||
#include <string.h>
|
||||
#include "shader.h"
|
||||
#include "utils.h"
|
||||
#include <OpenGL/gl3.h>
|
||||
|
||||
static const char *vertex_shader = "\n\
|
||||
#version 150 \n\
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef shader_h
|
||||
#define shader_h
|
||||
#include <OpenGL/gl3.h>
|
||||
#define GL_GLEXT_PROTOTYPES
|
||||
#include <SDL2/SDL_opengl.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef struct shader_s {
|
||||
|
|
Loading…
Reference in New Issue