SDL  2.0
SDL_emscriptenopengles.c
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "../../SDL_internal.h"
22 
23 #if SDL_VIDEO_DRIVER_EMSCRIPTEN && SDL_VIDEO_OPENGL_EGL
24 
25 #include <emscripten/emscripten.h>
26 #include <GLES2/gl2.h>
27 
28 #include "SDL_emscriptenvideo.h"
29 #include "SDL_emscriptenopengles.h"
30 #include "SDL_hints.h"
31 
32 #define LOAD_FUNC(NAME) _this->egl_data->NAME = NAME;
33 
34 /* EGL implementation of SDL OpenGL support */
35 
36 int
37 Emscripten_GLES_LoadLibrary(_THIS, const char *path) {
38  /*we can't load EGL dynamically*/
39  _this->egl_data = (struct SDL_EGL_VideoData *) SDL_calloc(1, sizeof(SDL_EGL_VideoData));
40  if (!_this->egl_data) {
41  return SDL_OutOfMemory();
42  }
43 
44  /* Emscripten forces you to manually cast eglGetProcAddress to the real
45  function type; grep for "__eglMustCastToProperFunctionPointerType" in
46  Emscripten's egl.h for details. */
47  _this->egl_data->eglGetProcAddress = (void *(EGLAPIENTRY *)(const char *)) eglGetProcAddress;
48 
49  LOAD_FUNC(eglGetDisplay);
50  LOAD_FUNC(eglInitialize);
51  LOAD_FUNC(eglTerminate);
52  LOAD_FUNC(eglChooseConfig);
53  LOAD_FUNC(eglGetConfigAttrib);
54  LOAD_FUNC(eglCreateContext);
55  LOAD_FUNC(eglDestroyContext);
56  LOAD_FUNC(eglCreateWindowSurface);
57  LOAD_FUNC(eglDestroySurface);
58  LOAD_FUNC(eglMakeCurrent);
59  LOAD_FUNC(eglSwapBuffers);
60  LOAD_FUNC(eglSwapInterval);
61  LOAD_FUNC(eglWaitNative);
62  LOAD_FUNC(eglWaitGL);
63  LOAD_FUNC(eglBindAPI);
64  LOAD_FUNC(eglQueryString);
65  LOAD_FUNC(eglGetError);
66 
67  _this->egl_data->egl_display = _this->egl_data->eglGetDisplay(EGL_DEFAULT_DISPLAY);
68  if (!_this->egl_data->egl_display) {
69  return SDL_SetError("Could not get EGL display");
70  }
71 
72  if (_this->egl_data->eglInitialize(_this->egl_data->egl_display, NULL, NULL) != EGL_TRUE) {
73  return SDL_SetError("Could not initialize EGL");
74  }
75 
76  if (path) {
78  } else {
79  *_this->gl_config.driver_path = '\0';
80  }
81 
82  return 0;
83 }
84 
85 SDL_EGL_CreateContext_impl(Emscripten)
86 SDL_EGL_MakeCurrent_impl(Emscripten)
87 
88 int
89 Emscripten_GLES_SwapWindow(_THIS, SDL_Window * window)
90 {
91  EGLBoolean ret = SDL_EGL_SwapBuffers(_this, ((SDL_WindowData *) window->driverdata)->egl_surface);
92  if (emscripten_has_asyncify() && SDL_GetHintBoolean(SDL_HINT_EMSCRIPTEN_ASYNCIFY, SDL_TRUE)) {
93  /* give back control to browser for screen refresh */
94  emscripten_sleep(0);
95  }
96  return ret;
97 }
98 
99 void
100 Emscripten_GLES_GetDrawableSize(_THIS, SDL_Window * window, int * w, int * h)
101 {
103  if (window->driverdata) {
104  data = (SDL_WindowData *) window->driverdata;
105 
106  if (w) {
107  *w = window->w * data->pixel_ratio;
108  }
109 
110  if (h) {
111  *h = window->h * data->pixel_ratio;
112  }
113  }
114 }
115 
116 #endif /* SDL_VIDEO_DRIVER_EMSCRIPTEN && SDL_VIDEO_OPENGL_EGL */
117 
118 /* vi: set ts=4 sw=4 expandtab: */
119 
#define _THIS
#define SDL_SetError
#define SDL_strlcpy
#define SDL_GetHintBoolean
#define SDL_calloc
#define SDL_OutOfMemory()
Definition: SDL_error.h:88
#define SDL_HINT_EMSCRIPTEN_ASYNCIFY
Disable giving back control to the browser automatically when running with asyncify.
Definition: SDL_hints.h:1125
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: SDL_opengl.h:1974
GLsizei const GLchar *const * path
GLfloat GLfloat GLfloat GLfloat h
GLubyte GLubyte GLubyte GLubyte w
@ SDL_TRUE
Definition: SDL_stdinc.h:170
static SDL_VideoDevice * _this
Definition: SDL_video.c:126
#define NULL
Definition: begin_code.h:163
EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
EGLAPI EGLBoolean EGLAPIENTRY eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
#define EGL_DEFAULT_DISPLAY
Definition: egl.h:227
EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
EGLAPI EGLBoolean EGLAPIENTRY eglTerminate(EGLDisplay dpy)
EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
EGLAPI const char *EGLAPIENTRY eglQueryString(EGLDisplay dpy, EGLint name)
EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI(EGLenum api)
unsigned int EGLBoolean
Definition: egl.h:54
EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx)
EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative(EGLint engine)
EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay(EGLNativeDisplayType display_id)
EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval(EGLDisplay dpy, EGLint interval)
EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress(const char *procname)
EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL(void)
#define EGL_TRUE
Definition: egl.h:116
EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value)
EGLAPI EGLint EGLAPIENTRY eglGetError(void)
EGLAPI EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list)
EGLSurface EGLNativeWindowType * window
Definition: eglext.h:1025
#define EGLAPIENTRY
Definition: eglplatform.h:54
set set set set set set set macro pixldst1 abits if abits op else op endif endm macro pixldst2 abits if abits op else op endif endm macro pixldst4 abits if abits op else op endif endm macro pixldst0 abits op endm macro pixldst3 mem_operand op endm macro pixldst30 mem_operand op endm macro pixldst abits if abits elseif abits elseif abits elseif abits elseif abits pixldst0 abits else pixldst0 abits pixldst0 abits pixldst0 abits pixldst0 abits endif elseif abits else pixldst0 abits pixldst0 abits endif elseif abits else error unsupported bpp *numpix else pixst endif endm macro pixld1_s mem_operand if asr adds SRC_WIDTH_FIXED bpl add asl mov asr adds SRC_WIDTH_FIXED bpl add asl mov asr adds SRC_WIDTH_FIXED bpl add asl mov asr adds SRC_WIDTH_FIXED bpl add asl elseif asr adds SRC_WIDTH_FIXED bpl add asl mov asr adds SRC_WIDTH_FIXED bpl add asl else error unsupported endif endm macro pixld2_s mem_operand if mov asr add asl add asl mov asr sub UNIT_X add asl mov asr add asl add asl mov asr add UNIT_X add asl else pixld1_s mem_operand pixld1_s mem_operand endif endm macro pixld0_s mem_operand if asr adds SRC_WIDTH_FIXED bpl add asl elseif asr adds SRC_WIDTH_FIXED bpl add asl endif endm macro pixld_s_internal mem_operand if mem_operand pixld2_s mem_operand pixdeinterleave basereg elseif mem_operand elseif mem_operand elseif mem_operand elseif mem_operand pixld0_s mem_operand else pixld0_s mem_operand pixld0_s mem_operand pixld0_s mem_operand pixld0_s mem_operand endif elseif mem_operand else pixld0_s mem_operand pixld0_s mem_operand endif elseif mem_operand else error unsupported mem_operand if bpp mem_operand endif endm macro vuzp8 reg2 vuzp d d &reg2 endm macro vzip8 reg2 vzip d d &reg2 endm macro pixdeinterleave basereg basereg basereg basereg basereg endif endm macro pixinterleave basereg basereg basereg basereg basereg endif endm macro PF boost_increment endif if endif PF tst PF addne PF subne PF cmp ORIG_W if endif if endif if endif PF subge ORIG_W PF subges if endif if endif if endif endif endm macro cache_preload_simple endif if dst_r_bpp pld[DST_R, #(PREFETCH_DISTANCE_SIMPLE *dst_r_bpp/8)] endif if mask_bpp pld if[MASK, #(PREFETCH_DISTANCE_SIMPLE *mask_bpp/8)] endif endif endm macro fetch_mask_pixblock pixld mask_basereg pixblock_size MASK endm macro ensure_destination_ptr_alignment process_pixblock_tail_head if beq irp skip1(dst_w_bpp<=(lowbit *8)) &&((lowbit *8)<(pixblock_size *dst_w_bpp)) .if lowbit< 16 tst DST_R
char driver_path[256]
Definition: SDL_sysvideo.h:364
struct SDL_VideoDevice::@440 gl_config
The type used to identify a window.
Definition: SDL_sysvideo.h:75