
I previously added code to migrate individual test suites to Skia's higher quality analytic antialiasing. At this point, analytic AA is always enabled (via #define), so this staging code is unnecessary. Bug: chromium:1421297 Change-Id: Ie2f779ab39df7912c40210d3db1ca76ccd6e8886 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4468568 Code-Coverage: Findit <findit-for-me@appspot.gserviceaccount.com> Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: Arthur Sonzogni <arthursonzogni@chromium.org> Reviewed-by: Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/main@{#1136464}
17 lines
487 B
C++
17 lines
487 B
C++
// Copyright 2018 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CONTENT_COMMON_SKIA_UTILS_H_
|
|
#define CONTENT_COMMON_SKIA_UTILS_H_
|
|
|
|
namespace content {
|
|
|
|
// Common utility code for skia initialization done in the renderer process, and
|
|
// also in the GPU process for viz/oop-r which runs skia in the GPU process.
|
|
void InitializeSkia();
|
|
|
|
} // namespace content
|
|
|
|
#endif // CONTENT_COMMON_SKIA_UTILS_H_
|