• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #ifndef skgpu_Recording_DEFINED
9 #define skgpu_Recording_DEFINED
10 
11 #include "include/core/SkRefCnt.h"
12 
13 namespace skgpu {
14 
15 class CommandBuffer;
16 
17 class Recording final {
18 public:
19     Recording(sk_sp<CommandBuffer>);
20     ~Recording();
21 
22 protected:
23 private:
24     friend class Context; // for access to fCommandBuffer
25 
26     sk_sp<CommandBuffer> fCommandBuffer;
27 };
28 
29 } // namespace skgpu
30 
31 #endif // skgpu_Recording_DEFINED
32