diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-05-14 20:08:39 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-05-14 20:08:39 +0000 |
commit | 382322ccfff3f6297d15c591e2de6277e2143d04 (patch) | |
tree | bc3b67cfed9ae81c046ffd24d40ffb1371ea32b1 | |
parent | 9c639a406eec42c8f5169bd78ad93e58f00ea9f6 (diff) |
Fix warnings in GrGLInterface mac setup, ignoring proc addr returns. There should be no functional change as these all return NULL on 10.6 and 10.7.
git-svn-id: http://skia.googlecode.com/svn/trunk@3929 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp b/src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp index ecf620026c..f05a6efa1f 100644 --- a/src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp +++ b/src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp @@ -25,8 +25,8 @@ void* GetProcAddress(const char* name) { return NULL == symbol ? NULL : NSAddressOfSymbol(symbol); } -#define GET_PROC(name) ((GrGL ## name ## Proc) GetProcAddress("_gl" #name)) -#define GET_PROC_SUFFIX(name, suffix) ((GrGL ## name ## Proc) GetProcAddress("_gl" #name #suffix)) +#define GET_PROC(name) (interface->f ## name = ((GrGL ## name ## Proc) GetProcAddress("_gl" #name))) +#define GET_PROC_SUFFIX(name, suffix) (interface->f ## name = ((GrGL ## name ## Proc) GetProcAddress("_gl" #name #suffix))) const GrGLInterface* GrGLCreateNativeInterface() { // The gl functions are not context-specific so we create one global |