Skip to content

Commit

Permalink
Date: Mon, 5 Jan 2004 00:09:36 +0100
Browse files Browse the repository at this point in the history
From: Anders_F_Bj?rklund
Subject: [SDL] Dynamic OpenGL lib support for Mac

Here's a patch that adds LoadLibrary and GetProcAddress
to the Carbon macintosh driver (for Mac OS 9 and Mac OS X):
http://www.algonet.se/~afb/SDL-1.2.6-macdynamicgl.patch
It just calls the corresponding function from SDL_loadso.

It also fixes one Mac bug in SDL_loadso.c, that made it fail
always when loading a library, and fixes the screen update
after receiving an update event - which caused the OpenGL
context to be overwritten by a blank window by UpdateRect...
  • Loading branch information
slouken committed Jan 5, 2004
1 parent 1cb6d97 commit aa90a9d
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/SDL_loadso.c
Expand Up @@ -98,6 +98,7 @@ void *SDL_LoadObject(const char *sofile)
kLoadCFrag, &library_id, &mainAddr, errName);
switch (error) {
case noErr:
loaderror = NULL;
break;
case cfragNoLibraryErr:
loaderror = "Library not found";
Expand Down
2 changes: 2 additions & 0 deletions src/video/maccommon/SDL_lowvideo.h
Expand Up @@ -89,6 +89,8 @@ struct SDL_PrivateVideoData {

#ifdef HAVE_OPENGL
AGLContext appleGLContext;

void *libraryHandle;
#endif
};
/* Old variable names */
Expand Down
5 changes: 5 additions & 0 deletions src/video/maccommon/SDL_macevents.c
Expand Up @@ -384,6 +384,11 @@ static int Mac_HandleEvents(_THIS, int wait4it)
#endif
case updateEvt: {
BeginUpdate(SDL_Window);
#ifdef HAVE_OPENGL
if (SDL_VideoSurface->flags & SDL_OPENGL)
SDL_GL_SwapBuffers();
else
#endif
if ( (SDL_VideoSurface->flags & SDL_HWSURFACE) ==
SDL_SWSURFACE ) {
SDL_UpdateRect(SDL_VideoSurface, 0, 0, 0, 0);
Expand Down
25 changes: 25 additions & 0 deletions src/video/maccommon/SDL_macgl.c
Expand Up @@ -30,6 +30,7 @@ static char rcsid =
#include "SDL_error.h"
#include "SDL_lowvideo.h"
#include "SDL_macgl_c.h"
#include "SDL_loadso.h"


/* krat: adding OpenGL support */
Expand Down Expand Up @@ -156,5 +157,29 @@ void Mac_GL_SwapBuffers(_THIS)
aglSwapBuffers(glContext);
}

int Mac_GL_LoadLibrary(_THIS, const char *location)
{
if (location == NULL)
location = "OpenGLLibrary";

this->hidden->libraryHandle = SDL_LoadObject(location);

this->gl_config.driver_loaded = 1;
return (this->hidden->libraryHandle != NULL) ? 0 : -1;
}

void Mac_GL_UnloadLibrary(_THIS)
{
SDL_UnloadObject(this->hidden->libraryHandle);

this->hidden->libraryHandle = NULL;
this->gl_config.driver_loaded = 0;
}

void* Mac_GL_GetProcAddress(_THIS, const char *proc)
{
return SDL_LoadFunction( this->hidden->libraryHandle, proc );
}

#endif /* HAVE_OPENGL */

3 changes: 3 additions & 0 deletions src/video/maccommon/SDL_macgl_c.h
Expand Up @@ -44,5 +44,8 @@ extern void Mac_GL_Quit(_THIS);
extern int Mac_GL_MakeCurrent(_THIS);
extern int Mac_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value);
extern void Mac_GL_SwapBuffers(_THIS);
extern int Mac_GL_LoadLibrary(_THIS, const char *location);
extern void Mac_GL_UnloadLibrary(_THIS);
extern void* Mac_GL_GetProcAddress(_THIS, const char *proc);
#endif

2 changes: 2 additions & 0 deletions src/video/macrom/SDL_romvideo.c
Expand Up @@ -163,6 +163,8 @@ static SDL_VideoDevice *ROM_CreateDevice(int devindex)
#ifdef HAVE_OPENGL
device->GL_MakeCurrent = Mac_GL_MakeCurrent;
device->GL_SwapBuffers = Mac_GL_SwapBuffers;
device->GL_LoadLibrary = Mac_GL_LoadLibrary;
device->GL_GetProcAddress = Mac_GL_GetProcAddress;
#endif
device->SetCaption = Mac_SetCaption;
device->SetIcon = NULL;
Expand Down

0 comments on commit aa90a9d

Please sign in to comment.