chromium/third_party/blink/renderer/core/paint/text_shadow_painter.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/paint/text_shadow_painter.h"

#include "base/containers/heap_array.h"
#include "base/numerics/safe_conversions.h"
#include "base/ranges/algorithm.h"
#include "third_party/blink/renderer/core/style/shadow_list.h"

namespace blink {

namespace {

sk_sp<PaintFilter> MakeOneTextShadowFilter(
    const ShadowData& shadow,
    const Color& current_color,
    mojom::blink::ColorScheme color_scheme,
    DropShadowPaintFilter::ShadowMode shadow_mode) {}

sk_sp<PaintFilter> MakeTextShadowFilter(const TextPaintStyle& text_style) {}

}  // namespace

void ScopedTextShadowPainter::ApplyShadowList(
    GraphicsContext& context,
    const TextPaintStyle& text_style) {}

}  // namespace blink