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

Unified Diff: src/gpu/gl/GrGLCaps.cpp

Issue 54493005: Turn on don't-reuse-scratch-textures for all Android devices (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/GrGLCaps.cpp
===================================================================
--- src/gpu/gl/GrGLCaps.cpp (revision 12067)
+++ src/gpu/gl/GrGLCaps.cpp (working copy)
@@ -312,7 +312,11 @@
ctxInfo.hasExtension("GL_NV_path_rendering");
fDstReadInShaderSupport = kNone_FBFetchType != fFBFetchType;
+#ifdef SK_BUILD_FOR_ANDROID
+ fReuseScratchTextures = true;
+#else
fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
+#endif
// Enable supported shader-related caps
if (kDesktop_GrGLBinding == binding) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698