diff options
author | Robert Phillips <robertphillips@google.com> | 2018-02-20 15:18:59 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-02-20 21:16:53 +0000 |
commit | f3690dd416a1ff63868dd886c0c08b7698c5dd1f (patch) | |
tree | f7b2dfbc731e769a4df698c4a9ddd5cbd7d8fba7 /include/gpu | |
parent | a8c55fa4fec87bf6fd601b16c2684168abddbab8 (diff) |
Change signature of GrAtlasGlyphCache::getProxies
Split out of https://skia-review.googlesource.com/c/skia/+/108001 (Fission GrAtlasGlyphCache in two)
TBR=bsalomon@google.com
Change-Id: I573730fdeddf178915eb5f5b8cf59a3ab29e0654
Reviewed-on: https://skia-review.googlesource.com/108441
Reviewed-by: Brian Salomon <bsalomon@google.com>
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h index 4d937c727e..914983c2ec 100644 --- a/include/gpu/GrContext.h +++ b/include/gpu/GrContext.h @@ -340,7 +340,7 @@ public: /** Get pointer to atlas texture for given mask format. Note that this wraps an actively mutating texture in an SkImage. This could yield unexpected results if it gets cached or used more generally. */ - sk_sp<SkImage> getFontAtlasImage_ForTesting(GrMaskFormat format, uint32_t index = 0); + sk_sp<SkImage> getFontAtlasImage_ForTesting(GrMaskFormat format, unsigned int index = 0); GrAuditTrail* getAuditTrail() { return &fAuditTrail; } |