Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Unified Diff: src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp

Issue 1552203003: Change use of LoadLibrary to LoadLibraryA (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/ports/SkOSLibrary_win.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
diff --git a/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp b/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
index b0eaa548f191d664ffc107c862ae859439ab06b9..b3766d9a82d16b5e66d1e2bab829cf50d34aa5a5 100644
--- a/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
+++ b/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
@@ -17,7 +17,7 @@
class AutoLibraryUnload {
public:
AutoLibraryUnload(const char* moduleName) {
- fModule = LoadLibrary(moduleName);
+ fModule = LoadLibraryA(moduleName);
}
~AutoLibraryUnload() {
if (fModule) {
« no previous file with comments | « no previous file | src/ports/SkOSLibrary_win.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698