Commit 5258e42d authored by Sam Lantinga's avatar Sam Lantinga

Fixed bug 1342 - SDL_CreateRenderer creates OpenGL ES 2.0 renderer in iPhone...

Fixed bug 1342 - SDL_CreateRenderer creates OpenGL ES 2.0 renderer in iPhone 3G using default index (-1)

The uikit code wasn't checking to make sure the context was successfully created.
parent ff12f1cf
......@@ -115,6 +115,9 @@ SDL_GLContext UIKit_GL_CreateContext(_THIS, SDL_Window * window)
depthBits: _this->gl_config.depth_size
stencilBits: _this->gl_config.stencil_size
majorVersion: _this->gl_config.major_version];
if (!view) {
return NULL;
}
data->view = view;
view->viewcontroller = data->viewcontroller;
......
......@@ -75,6 +75,7 @@
}
if (!context || ![EAGLContext setCurrentContext:context]) {
[self release];
SDL_SetError("OpenGL ES %d not supported", majorVersion);
return nil;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment