Navigation Menu

Skip to content

Commit

Permalink
WinRT: ANGLE/OpenGLES-initialization, error message improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLudwig committed Mar 17, 2015
1 parent 5b7ddd5 commit 1083ae2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/video/winrt/SDL_winrtopengles.cpp
Expand Up @@ -85,11 +85,11 @@ WINRT_GLES_LoadLibrary(_THIS, const char *path)
Microsoft::WRL::ComPtr<IUnknown> cpp_display = video_data->winrtEglWindow;
_this->egl_data->egl_display = ((eglGetDisplay_Old_Function)_this->egl_data->eglGetDisplay)(cpp_display);
if (!_this->egl_data->egl_display) {
return SDL_SetError("Could not get EGL display");
return SDL_SetError("Could not get Windows 8.0 EGL display");
}

if (_this->egl_data->eglInitialize(_this->egl_data->egl_display, NULL, NULL) != EGL_TRUE) {
return SDL_SetError("Could not initialize EGL");
return SDL_SetError("Could not initialize Windows 8.0 EGL");
}
} else {
/* Declare some ANGLE/EGL initialization property-sets, as suggested by
Expand Down Expand Up @@ -136,7 +136,7 @@ WINRT_GLES_LoadLibrary(_THIS, const char *path)
*/
_this->egl_data->egl_display = eglGetPlatformDisplayEXT(EGL_PLATFORM_ANGLE_ANGLE, EGL_DEFAULT_DISPLAY, defaultDisplayAttributes);
if (!_this->egl_data->egl_display) {
return SDL_SetError("Could not get EGL display");
return SDL_SetError("Could not get 10_0 EGL display");
}

if (_this->egl_data->eglInitialize(_this->egl_data->egl_display, NULL, NULL) != EGL_TRUE)
Expand All @@ -161,7 +161,7 @@ WINRT_GLES_LoadLibrary(_THIS, const char *path)
}

if (_this->egl_data->eglInitialize(_this->egl_data->egl_display, NULL, NULL) != EGL_TRUE) {
return SDL_SetError("Could not initialize EGL");
return SDL_SetError("Could not initialize WinRT 8.x+ EGL");
}
}
}
Expand Down

0 comments on commit 1083ae2

Please sign in to comment.