Index: src/gpu/gl/android/SkNativeGLContext_android.cpp |
diff --git a/src/gpu/gl/android/SkNativeGLContext_android.cpp b/src/gpu/gl/android/SkNativeGLContext_android.cpp |
index 705bd8f49caa5cd417622098a8ee47bf76a4dd71..d54c72bea83719eac76b17d66a65bf0d2994b8bd 100644 |
--- a/src/gpu/gl/android/SkNativeGLContext_android.cpp |
+++ b/src/gpu/gl/android/SkNativeGLContext_android.cpp |
@@ -92,7 +92,7 @@ const GrGLInterface* SkNativeGLContext::createGLContext(GrGLStandard forcedGpuAP |
const GrGLInterface* interface = NULL; |
- for (size_t i = 0; NULL == interface && i < apiLimit; ++api) { |
+ for (size_t api = 0; NULL == interface && api < apiLimit; ++api) { |
joshua.litt
2014/09/10 15:24:18
I think we still want the value of api from above
|
fDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); |
EGLint majorVersion; |