blob: 402891e0ddd22d534490a238b5b0b5fd3dd8e949 [file] [log] [blame]
// 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/display_list/skia/dl_sk_paint_dispatcher.h"
#include "flutter/display_list/utils/dl_receiver_utils.h"
#include "gtest/gtest.h"
namespace flutter {
namespace testing {
class MockDispatchHelper final : public virtual DlOpReceiver,
public DlSkPaintDispatchHelper,
public IgnoreClipDispatchHelper,
public IgnoreTransformDispatchHelper,
public IgnoreDrawDispatchHelper {
public:
void save() override { DlSkPaintDispatchHelper::save_opacity(0.5f); }
void restore() override { DlSkPaintDispatchHelper::restore_opacity(); }
};
// Regression test for https://github.com/flutter/flutter/issues/100176.
TEST(DisplayListUtils, OverRestore) {
MockDispatchHelper helper;
helper.save();
helper.restore();
// There should be a protection here for over-restore to keep the program from
// crashing.
helper.restore();
}
} // namespace testing
} // namespace flutter