1 /* 2 * Copyright 2021 Google LLC 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #include "experimental/graphite/src/Recording.h" 9 10 #include "experimental/graphite/src/CommandBuffer.h" 11 12 namespace skgpu { 13 Recording(sk_sp<CommandBuffer> commandBuffer)14Recording::Recording(sk_sp<CommandBuffer> commandBuffer) 15 : fCommandBuffer(std::move(commandBuffer)){ 16 } 17 ~Recording()18Recording::~Recording() {} 19 20 } // namespace skgpu 21