Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed testgles on iOS (bug 1136)
  • Loading branch information
slouken committed Feb 20, 2011
1 parent 9e9f62f commit a16c79a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/video/uikit/SDL_uikitopengles.m
Expand Up @@ -40,7 +40,7 @@
-Looking for the path to the OpenGL Library seems not to work in the iPhone Simulator.
-We don't know that the path won't change in the future.
*/
return SDL_LoadFunction(RTLD_DEFAULT, proc);
return dlsym(RTLD_DEFAULT, proc);
}

/*
Expand Down
9 changes: 5 additions & 4 deletions test/common.c
Expand Up @@ -53,8 +53,6 @@ CommonCreateState(char **argv, Uint32 flags)
state->gl_multisamplesamples = 0;
state->gl_retained_backing = 1;
state->gl_accelerated = -1;
state->gl_major_version = 2;
state->gl_minor_version = 1;

return state;
}
Expand Down Expand Up @@ -590,8 +588,10 @@ CommonInit(CommonState * state)
state->gl_accelerated);
}
SDL_GL_SetAttribute(SDL_GL_RETAINED_BACKING, state->gl_retained_backing);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, state->gl_major_version);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, state->gl_minor_version);
if (state->gl_major_version) {
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, state->gl_major_version);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, state->gl_minor_version);
}

if (state->verbose & VERBOSE_MODES) {
SDL_DisplayMode mode;
Expand Down Expand Up @@ -712,6 +712,7 @@ CommonInit(CommonState * state)
SDL_GetError());
return SDL_FALSE;
}
SDL_GetWindowSize(state->windows[i], &state->window_w, &state->window_h);

if (SDL_SetWindowDisplayMode(state->windows[i], &fullscreen_mode) < 0) {
fprintf(stderr, "Can't set up fullscreen display mode: %s\n",
Expand Down
11 changes: 8 additions & 3 deletions test/testgles.c
Expand Up @@ -177,7 +177,7 @@ main(int argc, char *argv[])
SDL_GL_SetSwapInterval(0);
}

SDL_GetCurrentDisplayMode(&mode);
SDL_GetCurrentDisplayMode(0, &mode);
printf("Screen bpp: %d\n", SDL_BITSPERPIXEL(mode.format));
printf("\n");
printf("Vendor : %s\n", glGetString(GL_VENDOR));
Expand Down Expand Up @@ -243,6 +243,8 @@ main(int argc, char *argv[])

/* Set rendering settings for each context */
for (i = 0; i < state->num_windows; ++i) {
float aspectAdjust;

status = SDL_GL_MakeCurrent(state->windows[i], context[i]);
if (status) {
printf("SDL_GL_MakeCurrent(): %s\n", SDL_GetError());
Expand All @@ -251,10 +253,11 @@ main(int argc, char *argv[])
continue;
}

aspectAdjust = (4.0f / 3.0f) / ((float)state->window_w / state->window_h);
glViewport(0, 0, state->window_w, state->window_h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrthof(-2.0, 2.0, -2.0, 2.0, -20.0, 20.0);
glOrthof(-2.0, 2.0, -2.0 * aspectAdjust, 2.0 * aspectAdjust, -20.0, 20.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glEnable(GL_DEPTH_TEST);
Expand All @@ -275,7 +278,7 @@ main(int argc, char *argv[])
switch (event.window.event) {
case SDL_WINDOWEVENT_RESIZED:
for (i = 0; i < state->num_windows; ++i) {
if (event.window.windowID == state->windows[i]) {
if (event.window.windowID == SDL_GetWindowID(state->windows[i])) {
status = SDL_GL_MakeCurrent(state->windows[i], context[i]);
if (status) {
printf("SDL_GL_MakeCurrent(): %s\n", SDL_GetError());
Expand Down Expand Up @@ -327,3 +330,5 @@ main(int argc, char *argv[])
}

#endif /* HAVE_OPENGLES */

/* vi: set ts=4 sw=4 expandtab: */

0 comments on commit a16c79a

Please sign in to comment.