Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nayuta403 committed Mar 1, 2023
1 parent 8e2eab5 commit a0f78e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flow/raster_cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class RasterCache {
explicit RasterCache(
size_t access_threshold = 3,
size_t picture_and_display_list_cache_limit_per_frame =
RasterCacheUtil::kDefaultPictureAndDispLayListCacheLimitPerFrame);
RasterCacheUtil::kDefaultPictureAndDisPlayListCacheLimitPerFrame);

virtual ~RasterCache() = default;

Expand Down
2 changes: 1 addition & 1 deletion flow/raster_cache_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct RasterCacheUtil {
// generated per frame. Generating too many caches in one frame may cause jank
// on that frame. This limit allows us to throttle the cache and distribute
// the work across multiple frames.
static constexpr int kDefaultPictureAndDispLayListCacheLimitPerFrame = 3;
static constexpr int kDefaultPictureAndDisPlayListCacheLimitPerFrame = 3;

// The ImageFilterLayer might cache the filtered output of this layer
// if the layer remains stable (if it is not animating for instance).
Expand Down

0 comments on commit a0f78e4

Please sign in to comment.