diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-29 21:41:27 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-29 21:41:27 +0000 |
| commit | 5d1cb86943ce9425ba5f42b1caf1fcbda65981df (patch) | |
| tree | b2665c0825a3271744e2f4be17fcfee87e8ba461 /src/engine/client | |
| parent | 7bc733dc10f3d01985021b7b5d6ae140dd5af6f1 (diff) | |
| download | zcatch-5d1cb86943ce9425ba5f42b1caf1fcbda65981df.tar.gz zcatch-5d1cb86943ce9425ba5f42b1caf1fcbda65981df.zip | |
disabled alpha and stencil
Diffstat (limited to 'src/engine/client')
| -rw-r--r-- | src/engine/client/ec_gfx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/client/ec_gfx.c b/src/engine/client/ec_gfx.c index 1e4378d2..c13b7c7e 100644 --- a/src/engine/client/ec_gfx.c +++ b/src/engine/client/ec_gfx.c @@ -163,7 +163,7 @@ int gfx_init() /* open window */ if(config.gfx_fullscreen) { - int result = glfwOpenWindow(screen_width, screen_height, 8, 8, 8, 8, 24, 8, GLFW_FULLSCREEN); + int result = glfwOpenWindow(screen_width, screen_height, 8, 8, 8, 0, 24, 0, GLFW_FULLSCREEN); if(result != GL_TRUE) { dbg_msg("game", "failed to create gl context"); @@ -172,7 +172,7 @@ int gfx_init() } else { - int result = glfwOpenWindow(screen_width, screen_height, 0, 0, 0, 8, 24, 8, GLFW_WINDOW); + int result = glfwOpenWindow(screen_width, screen_height, 0, 0, 0, 0, 24, 0, GLFW_WINDOW); if(result != GL_TRUE) { dbg_msg("game", "failed to create gl context"); |