# HG changeset patch # User Sam Lantinga # Date 1006410865 0 # Node ID cf4944faad9686b25054fdf5eb0f6327a79c5f78 # Parent 4bcb29d3769ce97707c4b113e8918e3979cda7c7 Fixed testgl so that SDL_GL_Enter2DMode() allows alpha blending diff -r 4bcb29d3769c -r cf4944faad96 test/testgl.c --- a/test/testgl.c Thu Nov 22 04:55:38 2001 +0000 +++ b/test/testgl.c Thu Nov 22 06:34:25 2001 +0000 @@ -118,6 +118,10 @@ glDisable(GL_CULL_FACE); glEnable(GL_TEXTURE_2D); + /* This allows alpha blending of 2D textures with the scene */ + glEnable(GL_BLEND); + glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + glViewport(0, 0, screen->w, screen->h); glMatrixMode(GL_PROJECTION);