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

Unified Diff: src/gpu/GrAtlas.cpp

Issue 25605007: Fix font GMs (Closed) Base URL: https://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 | src/gpu/GrTextStrike.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrAtlas.cpp
diff --git a/src/gpu/GrAtlas.cpp b/src/gpu/GrAtlas.cpp
index 9784e83de906472fc4bc68451581354754fa70ee..15236e42ca9f82dcf778d0f81c7dd7b652ab66b5 100644
--- a/src/gpu/GrAtlas.cpp
+++ b/src/gpu/GrAtlas.cpp
@@ -181,8 +181,9 @@ GrPlot* GrAtlasMgr::addToAtlas(GrAtlas* atlas,
GrTextureDesc desc;
#ifdef SK_DEVELOPER
// RenderTarget so we can read the pixels to dump them
- desc.fFlags = kDynamicUpdate_GrTextureFlagBit|kRenderTarget_GrTextureFlagBit
- |kNoStencil_GrTextureFlagBit;
+ // TODO: Fix to support RT
+ desc.fFlags = kDynamicUpdate_GrTextureFlagBit;//|kRenderTarget_GrTextureFlagBit;
+ //|kNoStencil_GrTextureFlagBit;
#else
desc.fFlags = kDynamicUpdate_GrTextureFlagBit;
#endif
« no previous file with comments | « no previous file | src/gpu/GrTextStrike.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698