Skip to content
Snippets Groups Projects
Commit f35e4d76 authored by deuce's avatar deuce
Browse files

Stop using double buffering, use MapRGB rather than palettized colours.

parent f7c87c18
No related branches found
No related tags found
No related merge requests found
......@@ -1146,11 +1146,23 @@ int sdl_video_event_thread(void *data)
for(y=0; y<rect->height; y++) {
for(x=0; x<rect->width; x++) {
int palette_entry;
r.x=x*vstat.scaling;
r.y=y*vstat.scaling;
r.w=vstat.scaling;
r.h=vstat.scaling;
sdl.FillRect(new_rect, &r, rect->data[y*rect->width+x]);
palette_entry=rect->data[y*rect->width+x];
#ifdef OFFSCREEN_FILL
sdl.FillRect(new_rect, &r, sdl.MapRGB(new_rect->format
, dac_default[vstat.palette[palette_entry]].red
, dac_default[vstat.palette[palette_entry]].green
, dac_default[vstat.palette[palette_entry]].blue));
#else
sdl.FillRect(win, &r, sdl.MapRGB(win->format
, dac_default[vstat.palette[palette_entry]].red
, dac_default[vstat.palette[palette_entry]].green
, dac_default[vstat.palette[palette_entry]].blue));
#endif
}
}
r.x=0;
......@@ -1161,7 +1173,9 @@ int sdl_video_event_thread(void *data)
dst.y=rect->y*vstat.scaling;
dst.w=rect->width*vstat.scaling;
dst.h=rect->height*vstat.scaling;
#ifdef OFFSCREEN_FILL
sdl.BlitSurface(new_rect, &r, win, &dst);
#endif
sdl.UpdateRects(win,1,&dst);
free(rect->data);
free(rect);
......
......@@ -77,6 +77,7 @@ int load_sdl_funcs(struct sdlfuncs *sdlf)
sdlf->LockAudio=SDL_LockAudio;
sdlf->UnlockAudio=SDL_UnlockAudio;
sdlf->GetAudioStatus=SDL_GetAudioStatus;
sdlf->MapRGB=SDL_MapRGB;
sdlf->gotfuncs=1;
sdl_funcs_loaded=1;
return(0);
......@@ -260,6 +261,10 @@ int load_sdl_funcs(struct sdlfuncs *sdlf)
FreeLibrary(sdl_dll);
return(-1);
}
if((sdlf->MapRGB=(void *)GetProcAddress(sdl_dll, "SDL_MapRGB"))==NULL) {
FreeLibrary(sdl_dll);
return(-1);
}
sdlf->gotfuncs=1;
sdl_funcs_loaded=1;
return(0);
......@@ -437,6 +442,10 @@ int load_sdl_funcs(struct sdlfuncs *sdlf)
dlclose(sdl_dll);
return(-1);
}
if((sdlf->MapRGB=dlsym(sdl_dll, "SDL_MapRGB"))==NULL) {
dlclose(sdl_dll);
return(-1);
}
sdlf->gotfuncs=1;
sdl_funcs_loaded=1;
return(0);
......
......@@ -51,6 +51,7 @@ struct sdlfuncs {
void (*UnlockAudio)(void);
void (*PauseAudio)(int pause_on);
SDL_audiostatus (*GetAudioStatus)(void);
Uint32 (*MapRGB) (SDL_PixelFormat *fmt, Uint8 r, Uint8 g, Uint8 b);
int gotfuncs;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment