diff --git a/impeller/compiler/reflector.cc b/impeller/compiler/reflector.cc index 05827e341f3ef..ca3ecd163e914 100644 --- a/impeller/compiler/reflector.cc +++ b/impeller/compiler/reflector.cc @@ -329,9 +329,6 @@ std::shared_ptr 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 uniforms = diff --git a/impeller/compiler/reflector.h b/impeller/compiler/reflector.h index 981f004dfecd2..d55a1420efd71 100644 --- a/impeller/compiler/reflector.h +++ b/impeller/compiler/reflector.h @@ -96,7 +96,6 @@ class Reflector { const Options options_; const std::shared_ptr ir_; const std::shared_ptr shader_data_; - const std::shared_ptr sksl_data_; const CompilerBackend compiler_; std::unique_ptr template_arguments_; std::shared_ptr reflection_header_;