// Copyright 2023 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "core/fxge/dib/blend.h" #include "core/fxge/dib/fx_dib.h" #include "testing/gtest/include/gtest/gtest.h" namespace fxge { TEST(Blend, Normal) { … } TEST(Blend, Multiply) { … } TEST(Blend, Screen) { … } TEST(Blend, Overlay) { … } TEST(Blend, Darken) { … } TEST(Blend, Lighten) { … } TEST(Blend, ColorDodge) { … } TEST(Blend, ColorBurn) { … } TEST(Blend, HardLight) { … } TEST(Blend, SoftLight) { … } TEST(Blend, Difference) { … } TEST(Blend, Exclusion) { … } } // namespace fxge