// 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. #include "impeller/renderer/compute_pass.h" namespace impeller { ComputePass::ComputePass(std::shared_ptr context) : context_(std::move(context)) {} ComputePass::~ComputePass() = default; void ComputePass::SetLabel(const std::string& label) { if (label.empty()) { return; } OnSetLabel(label); } } // namespace impeller