Only disable scratch texture reuse on the N10 and N4

https://codereview.chromium.org/48903017/



git-svn-id: http://skia.googlecode.com/svn/trunk@12080 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
robertphillips@google.com 2013-11-01 15:03:34 +00:00
parent 7b1c2c102e
commit 8995b7b626

View File

@ -312,11 +312,10 @@ void GrGLCaps::init(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
ctxInfo.hasExtension("GL_NV_path_rendering");
fDstReadInShaderSupport = kNone_FBFetchType != fFBFetchType;
#ifdef SK_BUILD_FOR_ANDROID
fReuseScratchTextures = false;
#else
fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
#endif
// Disable scratch texture reuse on Mali and Adreno devices
fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor() &&
kQualcomm_GrGLVendor != ctxInfo.vendor();
// Enable supported shader-related caps
if (kDesktop_GrGLBinding == binding) {