Move impeller::Comparable to //impeller/base. (flutter/engine#62)

Just some minor cleanup. Fixes https://github.com/flutter/flutter/issues/98686.
This commit is contained in:
Chinmay Garde 2022-03-08 11:13:38 -08:00 committed by Dan Field
parent fec775c42b
commit ce3148e2ec
12 changed files with 11 additions and 11 deletions

View File

@ -10,6 +10,8 @@ impeller_component("base") {
"allocation.h",
"backend_cast.h",
"base.h",
"comparable.cc",
"comparable.h",
"config.h",
"promise.cc",
"promise.h",

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
namespace impeller {

View File

@ -49,8 +49,6 @@ impeller_component("renderer") {
"command.cc",
"command_buffer.h",
"command_buffer.cc",
"comparable.cc",
"comparable.h",
"context.h",
"context.cc",
"device_buffer.h",

View File

@ -11,7 +11,7 @@
#include "flutter/fml/macros.h"
#include "impeller/base/backend_cast.h"
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
#include "impeller/renderer/sampler_descriptor.h"
#include "impeller/renderer/sampler_library.h"

View File

@ -12,7 +12,7 @@
#include <unordered_map>
#include "flutter/fml/macros.h"
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
#include "impeller/renderer/shader_library.h"
namespace impeller {

View File

@ -13,7 +13,7 @@
#include "flutter/fml/hash_combine.h"
#include "flutter/fml/macros.h"
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
#include "impeller/renderer/formats.h"
#include "impeller/renderer/shader_types.h"

View File

@ -5,7 +5,7 @@
#pragma once
#include "flutter/fml/macros.h"
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
#include "impeller/renderer/formats.h"
namespace impeller {

View File

@ -6,7 +6,7 @@
#include "flutter/fml/hash_combine.h"
#include "flutter/fml/macros.h"
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
#include "impeller/renderer/shader_types.h"
namespace impeller {

View File

@ -7,7 +7,7 @@
#include <vector>
#include "flutter/fml/macros.h"
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
#include "impeller/renderer/shader_types.h"
namespace impeller {

View File

@ -8,7 +8,7 @@
#include <optional>
#include "flutter/fml/macros.h"
#include "impeller/renderer/comparable.h"
#include "impeller/base/comparable.h"
#include "impeller/typographer/glyph.h"
#include "impeller/typographer/typeface.h"

View File

@ -5,8 +5,8 @@
#pragma once
#include "flutter/fml/macros.h"
#include "impeller/base/comparable.h"
#include "impeller/geometry/rect.h"
#include "impeller/renderer/comparable.h"
namespace impeller {