diff options
author | Robert Phillips <robertphillips@google.com> | 2018-03-07 15:13:18 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-03-08 14:29:11 +0000 |
commit | 5a66efbbab2926793a7f4dc57931253ab3046375 (patch) | |
tree | 5df12b8abca8e8db6fd4a37b38811abef37c117e /include/gpu | |
parent | fa303398d503a48d054e26dd1582282d3121b8ec (diff) |
Remove GrRestrictedAtlasManager
Philosophically this relies on: https://skia-review.googlesource.com/c/skia/+/111807 (Revise Text & Small Path Atlas so instantiation failure is handled at flush time)
Change-Id: I4fdcf1af8c5e9ffefdfb973104045f4f5d223a4e
Reviewed-on: https://skia-review.googlesource.com/112702
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'include/gpu')
-rw-r--r-- | include/gpu/GrContext.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h index 521a3dde7c..98d278acdb 100644 --- a/include/gpu/GrContext.h +++ b/include/gpu/GrContext.h @@ -36,7 +36,6 @@ class GrRenderTargetContext; class GrResourceEntry; class GrResourceCache; class GrResourceProvider; -class GrRestrictedAtlasManager; class GrSamplerState; class GrSurfaceProxy; class GrSwizzle; @@ -283,8 +282,7 @@ protected: bool initCommon(const GrContextOptions&); virtual bool init(const GrContextOptions&) = 0; // must be called after the ctor! - virtual GrAtlasManager* onGetFullAtlasManager() = 0; - virtual GrRestrictedAtlasManager* onGetRestrictedAtlasManager() = 0; + virtual GrAtlasManager* onGetAtlasManager() = 0; const GrBackend fBackend; sk_sp<const GrCaps> fCaps; |