Skip to content

Commit

Permalink
add intel driver dll to crash detection
Browse files Browse the repository at this point in the history
  • Loading branch information
abma committed Oct 20, 2016
1 parent 97b4043 commit d2c19e9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions rts/System/Platform/Win/CrashHandler.cpp
Expand Up @@ -279,11 +279,13 @@ inline static void StacktraceInline(const char *threadName, LPEXCEPTION_POINTERS
}

// OpenGL lib names (ATI): "atioglxx.dll" "atioglx2.dll"
containsOglDll = containsOglDll || strstr(modname, "atiogl");
containsOglDll |= strstr(modname, "atiogl") != nullptr;
// OpenGL lib names (Nvidia): "nvoglnt.dll" "nvoglv32.dll" "nvoglv64.dll" (last one is a guess)
containsOglDll = containsOglDll || strstr(modname, "nvogl");
containsOglDll |= strstr(modname, "nvogl") != nullptr;
// OpenGL lib names (Intel): "ig4dev32.dll" "ig4dev64.dll" "ig4icd32.dll"
containsOglDll = containsOglDll || strstr(modname, "ig4");
containsOglDll |= strstr(modname, "ig4") != nullptr;
// OpenGL lib names (Intel)
containsOglDll |= strstr(modname, "ig75icd32.dll") != nullptr;

++count;
}
Expand Down

0 comments on commit d2c19e9

Please sign in to comment.