chromium/third_party/skia/src/gpu/Blend.cpp

/*
 * Copyright 2015 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "src/gpu/Blend.h"

#include "include/core/SkBlendMode.h"

#ifdef SK_DEBUG
#include "include/core/SkString.h"
#endif

namespace skgpu {

const char* BlendFuncName(SkBlendMode mode) {}

SkSpan<const float> GetPorterDuffBlendConstants(SkBlendMode mode) {}

ReducedBlendModeInfo GetReducedBlendModeInfo(SkBlendMode mode) {}

#ifdef SK_DEBUG

namespace {

const char *equation_string(skgpu::BlendEquation eq) {}

const char *coeff_string(skgpu::BlendCoeff coeff) {}

} // anonymous namespace

SkString BlendInfo::dump() const {}

#endif // SK_DEBUG

}  // namespace skgpu