/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/gpu/DitherUtils.h" #ifndef SK_IGNORE_GPU_DITHER #include "include/core/SkBitmap.h" #include "include/core/SkColorType.h" #include "include/core/SkImageInfo.h" #include <cstdint> namespace skgpu { float DitherRangeForConfig(SkColorType dstColorType) { … } SkBitmap MakeDitherLUT() { … } } // namespace skgpu #endif // SK_IGNORE_GPU_DITHER