*** empty log message ***

svn path=/trunk/boinc/; revision=3162
This commit is contained in:
Rom Walton 2004-03-25 10:06:01 +00:00
parent ea05212f5f
commit 1029b8fd6c
2 changed files with 8 additions and 19 deletions

View File

@ -83,25 +83,6 @@ int boinc_init_graphics() {
#ifdef _WIN32 #ifdef _WIN32
BOOL bLoadError = FALSE;
__try {
if (FAILED(__HrLoadAllImportsForDll("glut32.dll")))
{
fprintf(stderr, "boinc_init_graphics(): failed to load imports for glut32.dll\n");
fprintf(stderr, "boinc_init_graphics(): graphics have been disabled\n");
bLoadError = TRUE;
}
}
__except((GetExceptionCode() == 0xC06D007E) ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH) {
fprintf(stderr, "boinc_init_graphics(): failed to load imports for glut32.dll\n");
fprintf(stderr, "boinc_init_graphics(): graphics have been disabled\n");
bLoadError = TRUE;
}
if (bLoadError) return ERR_NOT_FOUND;
// Create the event object used to signal between the // Create the event object used to signal between the
// worker and event threads // worker and event threads

View File

@ -10892,3 +10892,11 @@ David Mar 24 2004
client_types.C client_types.C
log_flags.C,h log_flags.C,h
Rom Mar 25 2004
- I have made SETI_BOINC Glut Free, Basically copied font code from glut
and put it into the glut folder.
- Removed Glut libraries
- Removed Delay Load technologies
api/
graphics_api.C