Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit ccd90ff

Browse files
authored
[Impeller] deleted the old blur (#50470)
fixes flutter/flutter#131579 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide] and the [C++, Objective-C, Java style guides]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I added new tests to check the change I am making or feature I am adding, or the PR is [test-exempt]. See [testing the engine] for instructions on writing and running engine tests. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I signed the [CLA]. - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/wiki/Tree-hygiene#overview [Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene [test-exempt]: https://github.com/flutter/flutter/wiki/Tree-hygiene#tests [Flutter Style Guide]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style [testing the engine]: https://github.com/flutter/flutter/wiki/Testing-the-engine [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/wiki/Chat
1 parent 3dfb90a commit ccd90ff

File tree

9 files changed

+1
-701
lines changed

9 files changed

+1
-701
lines changed

ci/licenses_golden/excluded_files

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@
144144
../../../flutter/impeller/docs
145145
../../../flutter/impeller/entity/contents/checkerboard_contents_unittests.cc
146146
../../../flutter/impeller/entity/contents/content_context_unittests.cc
147-
../../../flutter/impeller/entity/contents/filters/directional_gaussian_blur_filter_contents_unittests.cc
148147
../../../flutter/impeller/entity/contents/filters/gaussian_blur_filter_contents_unittests.cc
149148
../../../flutter/impeller/entity/contents/filters/inputs/filter_input_unittests.cc
150149
../../../flutter/impeller/entity/contents/host_buffer_unittests.cc

ci/licenses_golden/licenses_flutter

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5102,8 +5102,6 @@ ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_filter_contents.
51025102
ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_filter_contents.h + ../../../flutter/LICENSE
51035103
ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_matrix_filter_contents.cc + ../../../flutter/LICENSE
51045104
ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_matrix_filter_contents.h + ../../../flutter/LICENSE
5105-
ORIGIN: ../../../flutter/impeller/entity/contents/filters/directional_gaussian_blur_filter_contents.cc + ../../../flutter/LICENSE
5106-
ORIGIN: ../../../flutter/impeller/entity/contents/filters/directional_gaussian_blur_filter_contents.h + ../../../flutter/LICENSE
51075105
ORIGIN: ../../../flutter/impeller/entity/contents/filters/filter_contents.cc + ../../../flutter/LICENSE
51085106
ORIGIN: ../../../flutter/impeller/entity/contents/filters/filter_contents.h + ../../../flutter/LICENSE
51095107
ORIGIN: ../../../flutter/impeller/entity/contents/filters/gaussian_blur_filter_contents.cc + ../../../flutter/LICENSE
@@ -7935,8 +7933,6 @@ FILE: ../../../flutter/impeller/entity/contents/filters/color_filter_contents.cc
79357933
FILE: ../../../flutter/impeller/entity/contents/filters/color_filter_contents.h
79367934
FILE: ../../../flutter/impeller/entity/contents/filters/color_matrix_filter_contents.cc
79377935
FILE: ../../../flutter/impeller/entity/contents/filters/color_matrix_filter_contents.h
7938-
FILE: ../../../flutter/impeller/entity/contents/filters/directional_gaussian_blur_filter_contents.cc
7939-
FILE: ../../../flutter/impeller/entity/contents/filters/directional_gaussian_blur_filter_contents.h
79407936
FILE: ../../../flutter/impeller/entity/contents/filters/filter_contents.cc
79417937
FILE: ../../../flutter/impeller/entity/contents/filters/filter_contents.h
79427938
FILE: ../../../flutter/impeller/entity/contents/filters/gaussian_blur_filter_contents.cc

impeller/entity/BUILD.gn

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,6 @@ impeller_component("entity") {
134134
"contents/filters/color_filter_contents.h",
135135
"contents/filters/color_matrix_filter_contents.cc",
136136
"contents/filters/color_matrix_filter_contents.h",
137-
"contents/filters/directional_gaussian_blur_filter_contents.cc",
138-
"contents/filters/directional_gaussian_blur_filter_contents.h",
139137
"contents/filters/filter_contents.cc",
140138
"contents/filters/filter_contents.h",
141139
"contents/filters/gaussian_blur_filter_contents.cc",
@@ -268,7 +266,6 @@ impeller_component("entity_unittests") {
268266
sources = [
269267
"contents/checkerboard_contents_unittests.cc",
270268
"contents/content_context_unittests.cc",
271-
"contents/filters/directional_gaussian_blur_filter_contents_unittests.cc",
272269
"contents/filters/gaussian_blur_filter_contents_unittests.cc",
273270
"contents/filters/inputs/filter_input_unittests.cc",
274271
"contents/host_buffer_unittests.cc",

impeller/entity/contents/filters/directional_gaussian_blur_filter_contents.cc

Lines changed: 0 additions & 315 deletions
This file was deleted.

0 commit comments

Comments
 (0)