• 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 SkStuff_DEFINED
9 #define SkStuff_DEFINED
10 
11 #include "include/core/SkRefCnt.h"
12 
13 struct SkImageInfo;
14 class SkSurface;
15 
16 namespace skgpu {
17     class Recorder;
18 }
19 
20 // TODO: Should be in SkSurface.h
21 sk_sp<SkSurface> MakeGraphite(sk_sp<skgpu::Recorder>, const SkImageInfo&);
22 
23 #endif // SkStuff_DEFINED
24