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

[Impeller] impellerc: delete unused code #49061

Merged
merged 3 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions impeller/compiler/reflector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,6 @@ std::shared_ptr<RuntimeStageData> Reflector::GenerateRuntimeStageData() const {
options_.target_platform //
);
data->SetShaderData(shader_data_);
if (sksl_data_) {
data->SetSkSLData(sksl_data_);
}

// Sort the IR so that the uniforms are in declaration order.
std::vector<spirv_cross::ID> uniforms =
Expand Down
1 change: 0 additions & 1 deletion impeller/compiler/reflector.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ class Reflector {
const Options options_;
const std::shared_ptr<const spirv_cross::ParsedIR> ir_;
const std::shared_ptr<fml::Mapping> shader_data_;
const std::shared_ptr<fml::Mapping> sksl_data_;
const CompilerBackend compiler_;
std::unique_ptr<const nlohmann::json> template_arguments_;
std::shared_ptr<fml::Mapping> reflection_header_;
Expand Down