/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/sksl/tracing/SkSLDebugTracePriv.h" #include "src/sksl/tracing/SkSLTraceHook.h" namespace SkSL { std::unique_ptr<Tracer> Tracer::Make(std::vector<TraceInfo>* traceInfo) { … } void Tracer::line(int lineNum) { … } void Tracer::var(int slot, int32_t val) { … } void Tracer::enter(int fnIdx) { … } void Tracer::exit(int fnIdx) { … } void Tracer::scope(int delta) { … } } // namespace SkSL