aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrDrawingManager.h
diff options
context:
space:
mode:
authorGravatar Herb Derby <herb@google.com>2018-05-24 14:39:01 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-24 20:41:08 +0000
commit26cbe5130aa9839b5429b9507363ce2474091808 (patch)
tree5d10df1e2a768bf31af6ccbd2fd636f44f7c98b6 /src/gpu/GrDrawingManager.h
parent4a0ad501e4919e06bcf7a7ef4adec8f28818946b (diff)
Rename GrAtlasTextContext -> GrTextContext
Change-Id: I309b39425afc9b45095241eeb299096bc426afed Reviewed-on: https://skia-review.googlesource.com/130029 Reviewed-by: Herb Derby <herb@google.com> Reviewed-by: Jim Van Verth <jvanverth@google.com> Commit-Queue: Herb Derby <herb@google.com>
Diffstat (limited to 'src/gpu/GrDrawingManager.h')
-rw-r--r--src/gpu/GrDrawingManager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gpu/GrDrawingManager.h b/src/gpu/GrDrawingManager.h
index 1ec4d8f266..5978e487b1 100644
--- a/src/gpu/GrDrawingManager.h
+++ b/src/gpu/GrDrawingManager.h
@@ -13,7 +13,7 @@
#include "GrRenderTargetOpList.h"
#include "GrResourceCache.h"
#include "SkTArray.h"
-#include "text/GrAtlasTextContext.h"
+#include "text/GrTextContext.h"
class GrContext;
class GrCoverageCountingPathRenderer;
@@ -52,7 +52,7 @@ public:
GrContext* getContext() { return fContext; }
- GrAtlasTextContext* getAtlasTextContext();
+ GrTextContext* getTextContext();
GrPathRenderer* getPathRenderer(const GrPathRenderer::CanDrawPathArgs& args,
bool allowSW,
@@ -86,7 +86,7 @@ public:
private:
GrDrawingManager(GrContext*, const GrPathRendererChain::Options&,
- const GrAtlasTextContext::Options&, GrSingleOwner*,
+ const GrTextContext::Options&, GrSingleOwner*,
bool explicitlyAllocating, GrContextOptions::Enable sortRenderTargets);
void abandon();
@@ -115,7 +115,7 @@ private:
GrContext* fContext;
GrPathRendererChain::Options fOptionsForPathRendererChain;
- GrAtlasTextContext::Options fOptionsForAtlasTextContext;
+ GrTextContext::Options fOptionsForTextContext;
// In debug builds we guard against improper thread handling
GrSingleOwner* fSingleOwner;
@@ -127,7 +127,7 @@ private:
// These are the new opLists generated by the onFlush CBs
SkSTArray<8, sk_sp<GrOpList>> fOnFlushCBOpLists;
- std::unique_ptr<GrAtlasTextContext> fAtlasTextContext;
+ std::unique_ptr<GrTextContext> fTextContext;
GrPathRendererChain* fPathRendererChain;
GrSoftwarePathRenderer* fSoftwarePathRenderer;