*** empty log message ***

This commit is contained in:
Caspian Rychlik-Prince 2003-04-28 11:04:15 +00:00
parent 5c11c98afe
commit d020ad3216
1 changed files with 2 additions and 2 deletions

View File

@ -1250,7 +1250,7 @@ glCullParameterfvEXTPROC glCullParameterfvEXT = NULL;
glCullParameterdvEXTPROC glCullParameterdvEXT = NULL; glCullParameterdvEXTPROC glCullParameterdvEXT = NULL;
#endif /* GL_EXT_cull_vertex */ #endif /* GL_EXT_cull_vertex */
#ifdef GL_EXT_blend_function_sepatate #ifdef GL_EXT_blend_function_separate
glBlendFuncSeparateEXTPROC glBlendFuncSeparateEXT = NULL; glBlendFuncSeparateEXTPROC glBlendFuncSeparateEXT = NULL;
glBlendFuncSeparateINGRPROC glBlendFuncSeparateINGR = NULL; glBlendFuncSeparateINGRPROC glBlendFuncSeparateINGR = NULL;
#endif /* GL_EXT_blend_func_separate */ #endif /* GL_EXT_blend_func_separate */
@ -3275,7 +3275,7 @@ int extgl_Open()
lib_gl_handle = dlopen("libGL.so.1", RTLD_LAZY | RTLD_GLOBAL); lib_gl_handle = dlopen("libGL.so.1", RTLD_LAZY | RTLD_GLOBAL);
if (lib_gl_handle == NULL) if (lib_gl_handle == NULL)
return 1; return 1;
lib_glu_handle = dlopen("libGLU.so.1", RTLD_LAZY | RTLD_GLOBAL); lib_glu_handle = dlopen("libGLU.so", RTLD_LAZY | RTLD_GLOBAL);
if (lib_glu_handle == NULL) if (lib_glu_handle == NULL)
return 1; return 1;
return 0; return 0;