forked from flutter/flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set path for linear gradient contents; don't fail renders for failed …
…tessellations (flutter#162)
- Loading branch information
Showing
15 changed files
with
123 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// 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/testing/testing.h" | ||
#include "gtest/gtest.h" | ||
#include "impeller/geometry/path_builder.h" | ||
#include "impeller/tessellator/tessellator.h" | ||
|
||
namespace impeller { | ||
namespace testing { | ||
|
||
TEST(TessellatorTest, TessellatorReturnsCorrectResultStatus) { | ||
// Zero points. | ||
{ | ||
Tessellator t; | ||
auto polyline = PathBuilder{}.TakePath().CreatePolyline(); | ||
Tessellator::Result result = | ||
t.Tessellate(FillType::kPositive, polyline, [](Point point) {}); | ||
|
||
ASSERT_EQ(polyline.points.size(), 0u); | ||
ASSERT_EQ(result, Tessellator::Result::kInputError); | ||
} | ||
|
||
// One point. | ||
{ | ||
Tessellator t; | ||
auto polyline = PathBuilder{}.LineTo({0, 0}).TakePath().CreatePolyline(); | ||
Tessellator::Result result = | ||
t.Tessellate(FillType::kPositive, polyline, [](Point point) {}); | ||
|
||
ASSERT_EQ(polyline.points.size(), 1u); | ||
ASSERT_EQ(result, Tessellator::Result::kSuccess); | ||
} | ||
|
||
// Two points. | ||
{ | ||
Tessellator t; | ||
auto polyline = | ||
PathBuilder{}.AddLine({0, 0}, {0, 1}).TakePath().CreatePolyline(); | ||
Tessellator::Result result = | ||
t.Tessellate(FillType::kPositive, polyline, [](Point point) {}); | ||
|
||
ASSERT_EQ(polyline.points.size(), 2u); | ||
ASSERT_EQ(result, Tessellator::Result::kSuccess); | ||
} | ||
} | ||
|
||
} // namespace testing | ||
} // namespace impeller |