1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "gtest/gtest.h"
#include "mozilla/gfx/2D.h"
#include "skia/src/core/SkColorPriv.h" // for SkPMSrcOver
#include "Common.h"
#include "Decoder.h"
#include "DecoderFactory.h"
#include "SourceBuffer.h"
#include "SurfaceFilters.h"
#include "SurfacePipe.h"
using namespace mozilla;
using namespace mozilla::gfx;
using namespace mozilla::image;
static already_AddRefed<image::Decoder> CreateTrivialBlendingDecoder() {
DecoderType decoderType = DecoderFactory::GetDecoderType("image/gif");
DecoderFlags decoderFlags = DefaultDecoderFlags();
SurfaceFlags surfaceFlags = DefaultSurfaceFlags();
auto sourceBuffer = MakeNotNull<RefPtr<SourceBuffer>>();
return DecoderFactory::CreateAnonymousDecoder(
decoderType, sourceBuffer, Nothing(), decoderFlags, surfaceFlags);
}
template <typename Func>
RawAccessFrameRef WithBlendAnimationFilter(image::Decoder* aDecoder,
const AnimationParams& aAnimParams,
const IntSize& aOutputSize,
Func aFunc) {
DecoderTestHelper decoderHelper(aDecoder);
if (!aDecoder->HasAnimation()) {
decoderHelper.PostIsAnimated(aAnimParams.mTimeout);
}
BlendAnimationConfig blendAnim{aDecoder};
SurfaceConfig surfaceSink{aDecoder, aOutputSize, SurfaceFormat::OS_RGBA,
false, Some(aAnimParams)};
auto func = [&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
aFunc(aDecoder, aFilter);
};
WithFilterPipeline(aDecoder, func, false, blendAnim, surfaceSink);
RawAccessFrameRef current = aDecoder->GetCurrentFrameRef();
if (current) {
decoderHelper.PostFrameStop(Opacity::SOME_TRANSPARENCY);
}
return current;
}
void AssertConfiguringBlendAnimationFilterFails(const IntRect& aFrameRect,
const IntSize& aOutputSize) {
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams animParams{aFrameRect, FrameTimeout::FromRawMilliseconds(0),
0, BlendMethod::SOURCE, DisposalMethod::KEEP};
BlendAnimationConfig blendAnim{decoder};
SurfaceConfig surfaceSink{decoder, aOutputSize, SurfaceFormat::OS_RGBA, false,
Some(animParams)};
AssertConfiguringPipelineFails(decoder, blendAnim, surfaceSink);
}
TEST(ImageBlendAnimationFilter, BlendFailsForNegativeFrameRect)
{
// A negative frame rect size is disallowed.
AssertConfiguringBlendAnimationFilterFails(
IntRect(IntPoint(0, 0), IntSize(-1, -1)), IntSize(100, 100));
}
TEST(ImageBlendAnimationFilter, WriteFullFirstFrame)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params{
IntRect(0, 0, 100, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params, IntSize(100, 100),
[](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
CheckWritePixels(aDecoder, aFilter, Some(IntRect(0, 0, 100, 100)));
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
}
TEST(ImageBlendAnimationFilter, WritePartialFirstFrame)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params{
IntRect(25, 50, 50, 25), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params, IntSize(100, 100),
[](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
CheckWritePixels(aDecoder, aFilter, Some(IntRect(0, 0, 100, 100)),
Nothing(), Some(IntRect(25, 50, 50, 25)),
Some(IntRect(25, 50, 50, 25)));
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
}
static void TestWithBlendAnimationFilterClear(BlendMethod aBlendMethod) {
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params0{
IntRect(0, 0, 100, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params0, IntSize(100, 100),
[](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(BGRAColor::Green().AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
AnimationParams params1{
IntRect(0, 40, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 1, BlendMethod::SOURCE, DisposalMethod::CLEAR};
RawAccessFrameRef frame1 = WithBlendAnimationFilter(
decoder, params1, IntSize(100, 100),
[](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(BGRAColor::Red().AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 40, 100, 20), frame1->GetDirtyRect());
ASSERT_TRUE(frame1.get() != nullptr);
RefPtr<SourceSurface> surface = frame1->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 40, BGRAColor::Green()));
EXPECT_TRUE(RowsAreSolidColor(surface, 40, 20, BGRAColor::Red()));
EXPECT_TRUE(RowsAreSolidColor(surface, 60, 40, BGRAColor::Green()));
AnimationParams params2{
IntRect(0, 50, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 2, aBlendMethod, DisposalMethod::KEEP};
RawAccessFrameRef frame2 = WithBlendAnimationFilter(
decoder, params2, IntSize(100, 100),
[](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(BGRAColor::Blue().AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
ASSERT_TRUE(frame2.get() != nullptr);
surface = frame2->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 40, BGRAColor::Green()));
EXPECT_TRUE(RowsAreSolidColor(surface, 40, 10, BGRAColor::Transparent()));
EXPECT_TRUE(RowsAreSolidColor(surface, 50, 20, BGRAColor::Blue()));
EXPECT_TRUE(RowsAreSolidColor(surface, 70, 30, BGRAColor::Green()));
}
TEST(ImageBlendAnimationFilter, ClearWithOver)
{
TestWithBlendAnimationFilterClear(BlendMethod::OVER);
}
TEST(ImageBlendAnimationFilter, ClearWithSource)
{
TestWithBlendAnimationFilterClear(BlendMethod::SOURCE);
}
TEST(ImageBlendAnimationFilter, KeepWithSource)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params0{
IntRect(0, 0, 100, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params0, IntSize(100, 100),
[](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(BGRAColor::Green().AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
AnimationParams params1{
IntRect(0, 40, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 1, BlendMethod::SOURCE, DisposalMethod::KEEP};
RawAccessFrameRef frame1 = WithBlendAnimationFilter(
decoder, params1, IntSize(100, 100),
[](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(BGRAColor::Red().AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 40, 100, 20), frame1->GetDirtyRect());
ASSERT_TRUE(frame1.get() != nullptr);
RefPtr<SourceSurface> surface = frame1->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 40, BGRAColor::Green()));
EXPECT_TRUE(RowsAreSolidColor(surface, 40, 20, BGRAColor::Red()));
EXPECT_TRUE(RowsAreSolidColor(surface, 60, 40, BGRAColor::Green()));
}
TEST(ImageBlendAnimationFilter, KeepWithOver)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params0{
IntRect(0, 0, 100, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
BGRAColor frameColor0(0, 0xFF, 0, 0x40);
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params0, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor0.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
AnimationParams params1{
IntRect(0, 40, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 1, BlendMethod::OVER, DisposalMethod::KEEP};
BGRAColor frameColor1(0, 0, 0xFF, 0x80);
RawAccessFrameRef frame1 = WithBlendAnimationFilter(
decoder, params1, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor1.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 40, 100, 20), frame1->GetDirtyRect());
ASSERT_TRUE(frame1.get() != nullptr);
BGRAColor blendedColor(0, 0x20, 0x80, 0xA0, true); // already premultiplied
EXPECT_EQ(SkPMSrcOver(frameColor1.AsPixel(), frameColor0.AsPixel()),
blendedColor.AsPixel());
RefPtr<SourceSurface> surface = frame1->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 40, frameColor0));
EXPECT_TRUE(RowsAreSolidColor(surface, 40, 20, blendedColor));
EXPECT_TRUE(RowsAreSolidColor(surface, 60, 40, frameColor0));
}
TEST(ImageBlendAnimationFilter, RestorePreviousWithOver)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params0{
IntRect(0, 0, 100, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
BGRAColor frameColor0(0, 0xFF, 0, 0x40);
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params0, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor0.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
AnimationParams params1{
IntRect(0, 10, 100, 80), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 1, BlendMethod::SOURCE, DisposalMethod::RESTORE_PREVIOUS};
BGRAColor frameColor1 = BGRAColor::Green();
RawAccessFrameRef frame1 = WithBlendAnimationFilter(
decoder, params1, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor1.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 10, 100, 80), frame1->GetDirtyRect());
AnimationParams params2{
IntRect(0, 40, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 2, BlendMethod::OVER, DisposalMethod::KEEP};
BGRAColor frameColor2(0, 0, 0xFF, 0x80);
RawAccessFrameRef frame2 = WithBlendAnimationFilter(
decoder, params2, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor2.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 10, 100, 80), frame2->GetDirtyRect());
ASSERT_TRUE(frame2.get() != nullptr);
BGRAColor blendedColor(0, 0x20, 0x80, 0xA0, true); // already premultiplied
EXPECT_EQ(SkPMSrcOver(frameColor2.AsPixel(), frameColor0.AsPixel()),
blendedColor.AsPixel());
RefPtr<SourceSurface> surface = frame2->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 40, frameColor0));
EXPECT_TRUE(RowsAreSolidColor(surface, 40, 20, blendedColor));
EXPECT_TRUE(RowsAreSolidColor(surface, 60, 40, frameColor0));
}
TEST(ImageBlendAnimationFilter, RestorePreviousWithSource)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params0{
IntRect(0, 0, 100, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
BGRAColor frameColor0(0, 0xFF, 0, 0x40);
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params0, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor0.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
AnimationParams params1{
IntRect(0, 10, 100, 80), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 1, BlendMethod::SOURCE, DisposalMethod::RESTORE_PREVIOUS};
BGRAColor frameColor1 = BGRAColor::Green();
RawAccessFrameRef frame1 = WithBlendAnimationFilter(
decoder, params1, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor1.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 10, 100, 80), frame1->GetDirtyRect());
AnimationParams params2{
IntRect(0, 40, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 2, BlendMethod::SOURCE, DisposalMethod::KEEP};
BGRAColor frameColor2(0, 0, 0xFF, 0x80);
RawAccessFrameRef frame2 = WithBlendAnimationFilter(
decoder, params2, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor2.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 10, 100, 80), frame2->GetDirtyRect());
ASSERT_TRUE(frame2.get() != nullptr);
RefPtr<SourceSurface> surface = frame2->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 40, frameColor0));
EXPECT_TRUE(RowsAreSolidColor(surface, 40, 20, frameColor2));
EXPECT_TRUE(RowsAreSolidColor(surface, 60, 40, frameColor0));
}
TEST(ImageBlendAnimationFilter, RestorePreviousClearWithSource)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params0{
IntRect(0, 0, 100, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
BGRAColor frameColor0 = BGRAColor::Red();
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params0, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor0.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
AnimationParams params1{
IntRect(0, 0, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 1, BlendMethod::SOURCE, DisposalMethod::CLEAR};
BGRAColor frameColor1 = BGRAColor::Blue();
RawAccessFrameRef frame1 = WithBlendAnimationFilter(
decoder, params1, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor1.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 20), frame1->GetDirtyRect());
AnimationParams params2{
IntRect(0, 10, 100, 80), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 2, BlendMethod::SOURCE, DisposalMethod::RESTORE_PREVIOUS};
BGRAColor frameColor2 = BGRAColor::Green();
RawAccessFrameRef frame2 = WithBlendAnimationFilter(
decoder, params2, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor2.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 90), frame2->GetDirtyRect());
AnimationParams params3{
IntRect(0, 40, 100, 20), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 3, BlendMethod::SOURCE, DisposalMethod::KEEP};
BGRAColor frameColor3 = BGRAColor::Blue();
RawAccessFrameRef frame3 = WithBlendAnimationFilter(
decoder, params3, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor3.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 90), frame3->GetDirtyRect());
ASSERT_TRUE(frame3.get() != nullptr);
RefPtr<SourceSurface> surface = frame3->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 20, BGRAColor::Transparent()));
EXPECT_TRUE(RowsAreSolidColor(surface, 20, 20, frameColor0));
EXPECT_TRUE(RowsAreSolidColor(surface, 40, 20, frameColor3));
EXPECT_TRUE(RowsAreSolidColor(surface, 60, 40, frameColor0));
}
TEST(ImageBlendAnimationFilter, PartialOverlapFrameRect)
{
RefPtr<image::Decoder> decoder = CreateTrivialBlendingDecoder();
ASSERT_TRUE(decoder != nullptr);
AnimationParams params0{
IntRect(-10, -20, 110, 100), FrameTimeout::FromRawMilliseconds(0),
/* aFrameNum */ 0, BlendMethod::SOURCE, DisposalMethod::KEEP};
BGRAColor frameColor0 = BGRAColor::Red();
RawAccessFrameRef frame0 = WithBlendAnimationFilter(
decoder, params0, IntSize(100, 100),
[&](image::Decoder* aDecoder, SurfaceFilter* aFilter) {
auto result = aFilter->WritePixels<uint32_t>(
[&] { return AsVariant(frameColor0.AsPixel()); });
EXPECT_EQ(WriteState::FINISHED, result);
});
EXPECT_EQ(IntRect(0, 0, 100, 100), frame0->GetDirtyRect());
RefPtr<SourceSurface> surface = frame0->GetSourceSurface();
EXPECT_TRUE(RowsAreSolidColor(surface, 0, 80, frameColor0));
EXPECT_TRUE(RowsAreSolidColor(surface, 80, 20, BGRAColor::Transparent()));
}
|