1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/video/emscripten/SDL_emscriptenopengles.h Thu Dec 18 00:19:52 2014 -0500
1.3 @@ -0,0 +1,49 @@
1.4 +/*
1.5 + Simple DirectMedia Layer
1.6 + Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
1.7 +
1.8 + This software is provided 'as-is', without any express or implied
1.9 + warranty. In no event will the authors be held liable for any damages
1.10 + arising from the use of this software.
1.11 +
1.12 + Permission is granted to anyone to use this software for any purpose,
1.13 + including commercial applications, and to alter it and redistribute it
1.14 + freely, subject to the following restrictions:
1.15 +
1.16 + 1. The origin of this software must not be misrepresented; you must not
1.17 + claim that you wrote the original software. If you use this software
1.18 + in a product, an acknowledgment in the product documentation would be
1.19 + appreciated but is not required.
1.20 + 2. Altered source versions must be plainly marked as such, and must not be
1.21 + misrepresented as being the original software.
1.22 + 3. This notice may not be removed or altered from any source distribution.
1.23 +*/
1.24 +#include "../../SDL_internal.h"
1.25 +
1.26 +#ifndef _SDL_emscriptenopengles_h
1.27 +#define _SDL_emscriptenopengles_h
1.28 +
1.29 +#if SDL_VIDEO_DRIVER_EMSCRIPTEN && SDL_VIDEO_OPENGL_EGL
1.30 +
1.31 +#include "../SDL_sysvideo.h"
1.32 +#include "../SDL_egl_c.h"
1.33 +
1.34 +/* OpenGLES functions */
1.35 +#define Emscripten_GLES_GetAttribute SDL_EGL_GetAttribute
1.36 +#define Emscripten_GLES_GetProcAddress SDL_EGL_GetProcAddress
1.37 +#define Emscripten_GLES_UnloadLibrary SDL_EGL_UnloadLibrary
1.38 +#define Emscripten_GLES_SetSwapInterval SDL_EGL_SetSwapInterval
1.39 +#define Emscripten_GLES_GetSwapInterval SDL_EGL_GetSwapInterval
1.40 +
1.41 +extern int Emscripten_GLES_LoadLibrary(_THIS, const char *path);
1.42 +extern void Emscripten_GLES_DeleteContext(_THIS, SDL_GLContext context);
1.43 +extern SDL_GLContext Emscripten_GLES_CreateContext(_THIS, SDL_Window * window);
1.44 +extern void Emscripten_GLES_SwapWindow(_THIS, SDL_Window * window);
1.45 +extern int Emscripten_GLES_MakeCurrent(_THIS, SDL_Window * window, SDL_GLContext context);
1.46 +extern void Emscripten_GLES_GetDrawableSize(_THIS, SDL_Window * window, int * w, int * h);
1.47 +
1.48 +#endif /* SDL_VIDEO_DRIVER_EMSCRIPTEN && SDL_VIDEO_OPENGL_EGL */
1.49 +
1.50 +#endif /* _SDL_emscriptenopengles_h */
1.51 +
1.52 +/* vi: set ts=4 sw=4 expandtab: */