aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnuj Asher <AnujAsher@users.noreply.github.com>2023-07-02 16:46:16 +0530
committerGitHub <noreply@github.com>2023-07-02 16:46:16 +0530
commit0d7d72e6740026c2cdd7cd0a5503596efa74cb0b (patch)
tree2ed83915dce2c3dfc16e2ae8758e4952ae365c69
parentd3c9ea7df5ce7588d6c74806e2e1b1f005b9d36e (diff)
fix public function implementation prefix for egl functions
it was a typo SOKOL_APP_IMPL -> SOKOL_API_IMPL
-rw-r--r--sokol_app.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sokol_app.h b/sokol_app.h
index 1b9225b4..a1f45b6b 100644
--- a/sokol_app.h
+++ b/sokol_app.h
@@ -11062,7 +11062,7 @@ SOKOL_API_IMPL float sapp_dpi_scale(void) {
return _sapp.dpi_scale;
}
-SOKOL_APP_IMPL const void* sapp_egl_get_display(void) {
+SOKOL_API_IMPL const void* sapp_egl_get_display(void) {
SOKOL_ASSERT(_sapp.valid);
#if defined(_SAPP_ANDROID)
return _sapp.android.display;
@@ -11073,7 +11073,7 @@ SOKOL_APP_IMPL const void* sapp_egl_get_display(void) {
#endif
}
-SOKOL_APP_IMPL const void* sapp_egl_get_context(void) {
+SOKOL_API_IMPL const void* sapp_egl_get_context(void) {
SOKOL_ASSERT(_sapp.valid);
#if defined(_SAPP_ANDROID)
return _sapp.android.context;