mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Use bilinear instead of nearest filter to draw surface texture Related Issues: https://github.com/flutter/flutter/issues/53080 Tests: - TextureLayerTest
62 lines
2.3 KiB
C++
62 lines
2.3 KiB
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "flutter/flow/testing/mock_texture.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace flutter {
|
|
namespace testing {
|
|
|
|
TEST(MockTextureTest, Callbacks) {
|
|
auto texture = std::make_shared<MockTexture>(0);
|
|
|
|
ASSERT_FALSE(texture->gr_context_created());
|
|
texture->OnGrContextCreated();
|
|
ASSERT_TRUE(texture->gr_context_created());
|
|
|
|
ASSERT_FALSE(texture->gr_context_destroyed());
|
|
texture->OnGrContextDestroyed();
|
|
ASSERT_TRUE(texture->gr_context_destroyed());
|
|
|
|
ASSERT_FALSE(texture->unregistered());
|
|
texture->OnTextureUnregistered();
|
|
ASSERT_TRUE(texture->unregistered());
|
|
}
|
|
|
|
TEST(MockTextureTest, PaintCalls) {
|
|
SkCanvas canvas;
|
|
const SkRect paint_bounds1 = SkRect::MakeWH(1.0f, 1.0f);
|
|
const SkRect paint_bounds2 = SkRect::MakeWH(2.0f, 2.0f);
|
|
const auto expected_paint_calls =
|
|
std::vector{MockTexture::PaintCall{canvas, paint_bounds1, false, nullptr,
|
|
kNone_SkFilterQuality},
|
|
MockTexture::PaintCall{canvas, paint_bounds2, true, nullptr,
|
|
kNone_SkFilterQuality}};
|
|
auto texture = std::make_shared<MockTexture>(0);
|
|
|
|
texture->Paint(canvas, paint_bounds1, false, nullptr, kNone_SkFilterQuality);
|
|
texture->Paint(canvas, paint_bounds2, true, nullptr, kNone_SkFilterQuality);
|
|
EXPECT_EQ(texture->paint_calls(), expected_paint_calls);
|
|
}
|
|
|
|
TEST(MockTextureTest, PaintCallsWithLowFilterQuality) {
|
|
SkCanvas canvas;
|
|
const SkRect paint_bounds1 = SkRect::MakeWH(1.0f, 1.0f);
|
|
const SkRect paint_bounds2 = SkRect::MakeWH(2.0f, 2.0f);
|
|
const auto expected_paint_calls =
|
|
std::vector{MockTexture::PaintCall{canvas, paint_bounds1, false, nullptr,
|
|
kLow_SkFilterQuality},
|
|
MockTexture::PaintCall{canvas, paint_bounds2, true, nullptr,
|
|
kLow_SkFilterQuality}};
|
|
auto texture = std::make_shared<MockTexture>(0);
|
|
|
|
texture->Paint(canvas, paint_bounds1, false, nullptr, kLow_SkFilterQuality);
|
|
texture->Paint(canvas, paint_bounds2, true, nullptr, kLow_SkFilterQuality);
|
|
EXPECT_EQ(texture->paint_calls(), expected_paint_calls);
|
|
}
|
|
|
|
} // namespace testing
|
|
} // namespace flutter
|