• 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_Task_DEFINED
9 #define skgpu_Task_DEFINED
10 
11 #include "include/core/SkRefCnt.h"
12 
13 namespace skgpu {
14 
15 class CommandBuffer;
16 class ResourceProvider;
17 
18 class Task : public SkRefCnt {
19 public:
20     ~Task() override;
21 
22     virtual void addCommands(ResourceProvider*, CommandBuffer*) = 0;
23 
24 protected:
25     Task();
26 
27 private:
28 };
29 
30 } // namespace skgpu
31 
32 #endif // skgpu_Task_DEFINED
33