From f6401ee818fab054a040d450532a30a44ba05715 Mon Sep 17 00:00:00 2001 From: jpaana <> Date: Thu, 27 Mar 2003 21:03:34 +0000 Subject: [PATCH] No need to call shader creation here --- gl_common.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gl_common.c b/gl_common.c index 699e9cd..4517a0a 100644 --- a/gl_common.c +++ b/gl_common.c @@ -407,8 +407,6 @@ void CheckRadeonExtensions(void) //default to trilinear filtering on Radeon gl_filter_min = GL_LINEAR_MIPMAP_LINEAR; gl_filter_max = GL_LINEAR; - GL_CreateShadersRadeon(); - } } @@ -430,7 +428,6 @@ void CheckParheliaExtensions(void) //default to trilinear filtering on Parhelia gl_filter_min = GL_LINEAR_MIPMAP_LINEAR; gl_filter_max = GL_LINEAR; - GL_CreateShadersParhelia(); } } @@ -454,7 +451,6 @@ void CheckARBFragmentExtensions(void) //default to trilinear filtering gl_filter_min = GL_LINEAR_MIPMAP_LINEAR; gl_filter_max = GL_LINEAR; - GL_CreateShadersARB(); } }