Skip to content

Commit

Permalink
Stub out a display list dispatcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmaygarde authored and dnfield committed Apr 27, 2022
1 parent e3d4357 commit 10487e3
Show file tree
Hide file tree
Showing 6 changed files with 691 additions and 1 deletion.
2 changes: 2 additions & 0 deletions impeller/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ group("impeller") {
"aiks",
"base",
"compiler",
"display_list",
"entity",
"geometry",
"image",
Expand All @@ -25,6 +26,7 @@ executable("impeller_unittests") {
"aiks:aiks_unittests",
"base:base_unittests",
"compiler:compiler_unittests",
"display_list:display_list_unittests",
"entity:entity_unittests",
"fixtures",
"geometry:geometry_unittests",
Expand Down
1 change: 0 additions & 1 deletion impeller/compiler/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ impeller_component("compiler_lib") {
"//flutter/fml",
"//flutter/runtime:libdart",
"//third_party/inja",
"//third_party/rapidjson",
"//third_party/shaderc_flutter",
"//third_party/spirv_cross_flutter",
]
Expand Down
30 changes: 30 additions & 0 deletions impeller/display_list/BUILD.gn
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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.

import("//flutter/impeller/tools/impeller.gni")

impeller_component("display_list") {
sources = [
"display_list_impeller.cc",
"display_list_impeller.h",
]

deps = [
"../aiks",
"//flutter/flow",
"//flutter/fml",
"//third_party/skia",
]
}

impeller_component("display_list_unittests") {
testonly = true

sources = [ "display_list_unittests.cc" ]

deps = [
":display_list",
"../playground",
]
}
Loading

0 comments on commit 10487e3

Please sign in to comment.