mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Cleans up header order/grouping for consistency: associated header, C/C++ system/standard library headers, library headers, platform-specific #includes. Adds <cstring> where strlen, memcpy are being used: there are a bunch of places we use them transitively. Applies linter-required cleanups. Disables linter on one file due to included RapidJson header. See https://github.com/flutter/flutter/issues/65676 This patch does not cover flutter/shell/platform/darwin. There's a separate, slightly more intensive cleanup for those in progress.
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
/*
|
|
* Copyright 2017 Google, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "flutter/fml/macros.h"
|
|
#include "gtest/gtest.h"
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
|
#include "third_party/skia/include/core/SkCanvas.h"
|
|
#include "txt/font_collection.h"
|
|
|
|
namespace txt {
|
|
|
|
class RenderTest : public ::testing::Test {
|
|
public:
|
|
RenderTest();
|
|
|
|
~RenderTest();
|
|
|
|
SkCanvas* GetCanvas();
|
|
|
|
bool Snapshot();
|
|
|
|
size_t GetTestCanvasWidth() const;
|
|
|
|
size_t GetTestCanvasHeight() const;
|
|
|
|
std::shared_ptr<txt::FontCollection> GetTestFontCollection() const;
|
|
|
|
protected:
|
|
void SetUp() override;
|
|
|
|
void TearDown() override;
|
|
|
|
private:
|
|
size_t snapshots_;
|
|
std::unique_ptr<SkBitmap> bitmap_;
|
|
std::unique_ptr<SkCanvas> canvas_;
|
|
std::shared_ptr<txt::FontCollection> font_collection_;
|
|
|
|
std::string GetNextSnapshotName();
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(RenderTest);
|
|
};
|
|
|
|
} // namespace txt
|