Skip to content

Commit

Permalink
Fix more clang-tidy
Browse files Browse the repository at this point in the history
Change-Id: Id0b158064f31f68f23c5ef660948170a8b51884c
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/271317
Auto-Submit: Michael Ludwig <michaelludwig@google.com>
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Michael Ludwig <michaelludwig@google.com>
  • Loading branch information
lhkbob authored and Skia Commit-Bot committed Feb 17, 2020
1 parent 706f6b4 commit 3c4f3c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/SkScalerCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ class SkScalerCache {

// Return a glyph. Create it if it doesn't exist, and initialize the glyph with metrics and
// advances using a scaler.
SkGlyph* glyph(SkPackedGlyphID packedID) SK_REQUIRES(fMu);
SkGlyph* glyph(SkPackedGlyphID) SK_REQUIRES(fMu);

const void* prepareImage(SkGlyph* glyph) SK_REQUIRES(fMu);

// If the path has never been set, then use the scaler context to add the glyph.
const SkPath* preparePath(SkGlyph*) SK_REQUIRES(fMu);

SkGlyph* internalGlyphOrNull(SkPackedGlyphID packedID) const SK_REQUIRES(fMu);
SkGlyph* internalGlyphOrNull(SkPackedGlyphID) const SK_REQUIRES(fMu);

enum PathDetail {
kMetricsOnly,
Expand Down

0 comments on commit 3c4f3c1

Please sign in to comment.