blob: aa576cde2dc9df24037fcfa2186c089cadfd9a53 [file]
/*
* Copyright 2025 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/cpu/Recorder.h"
#include "include/core/SkTypes.h"
#include "src/capture/SkCaptureManager.h"
#include <memory>
namespace skcpu {
Recorder* Recorder::TODO() {
static Recorder* gRecorder = std::make_unique<Recorder>().release();
return gRecorder;
}
void Recorder::createCaptureBreakpoint(SkSurface*) {
}
} // namespace skcpu