/* * Copyright 2006 The Android Open Source Project * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkAlphaRuns_DEFINED #define SkAlphaRuns_DEFINED #include "include/core/SkColor.h" #include "include/core/SkTypes.h" #include "include/private/base/SkCPUTypes.h" #include "include/private/base/SkDebug.h" #include "include/private/base/SkTo.h" #include <cstdint> /** Sparse array of run-length-encoded alpha (supersampling coverage) values. Sparseness allows us to independently compose several paths into the same SkAlphaRuns buffer. */ class SkAlphaRuns { … }; #endif