| commit | 96966a5a1ffc2f03eef1b5523308299aa4195f50 | [log] [tgz] |
|---|---|---|
| author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Feb 21 16:34:21 2013 +0000 |
| committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Feb 21 16:34:21 2013 +0000 |
| tree | 31ff4279d562df89c5b8bf379b395299edc1ba05 | |
| parent | a1c511b8704c6c266b90860a4c68f30ca7514f9b [diff] [blame] |
Use CPU arrays for dynamic indices/vertices on ARM GPUs. Review URL: https://codereview.appspot.com/7365047 git-svn-id: http://skia.googlecode.com/svn/trunk@7810 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/gl/GrGLUtil.cpp b/src/gpu/gl/GrGLUtil.cpp index 3f110cc..225650c 100644 --- a/src/gpu/gl/GrGLUtil.cpp +++ b/src/gpu/gl/GrGLUtil.cpp
@@ -171,6 +171,9 @@ if (0 == strcmp(vendorString, "Intel")) { return kIntel_GrGLVendor; } + if (0 == strcmp(vendorString, "ARM")) { + return kARM_GrGLVendor; + } } return kOther_GrGLVendor;