comparison src/video/gem/SDL_gemvideo.c @ 993:2662da16d668

Forgot to flush OpenGL buffer using glFinish
author Patrice Mandin <patmandin@gmail.com>
date Sat, 27 Nov 2004 21:28:49 +0000
parents 0324ce32b2d9
children af92ee34b3e2
comparison
equal deleted inserted replaced
992:0324ce32b2d9 993:2662da16d668
1274 1274
1275 #ifdef HAVE_OPENGL 1275 #ifdef HAVE_OPENGL
1276 1276
1277 static void GEM_GL_SwapBuffers(_THIS) 1277 static void GEM_GL_SwapBuffers(_THIS)
1278 { 1278 {
1279 if (gl_active) { 1279 SDL_AtariGL_SwapBuffers(this);
1280 gl_copyshadow(this, this->screen); 1280 GEM_FlipHWSurface(this, this->screen);
1281 gl_convert(this, this->screen); 1281 }
1282 GEM_FlipHWSurface(this, this->screen); 1282
1283 } 1283 #endif
1284 }
1285
1286 #endif