You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
440 B
C
14 lines
440 B
C
#ifndef OPENMW_COMPONENTS_SDLUTIL_GL4ES_INIT_H
|
|
#define OPENMW_COMPONENTS_SDLUTIL_GL4ES_INIT_H
|
|
#ifdef OPENMW_GL4ES_MANUAL_INIT
|
|
#include <SDL_video.h>
|
|
|
|
// Must be called once SDL video mode has been set,
|
|
// which creates a context.
|
|
//
|
|
// GL4ES can then query the context for features and extensions.
|
|
extern "C" void openmw_gl4es_init(SDL_Window *window);
|
|
|
|
#endif // OPENMW_GL4ES_MANUAL_INIT
|
|
#endif // OPENMW_COMPONENTS_SDLUTIL_GL4ES_INIT_H
|