• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2023 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 SkCanvasAndroid_DEFINED
9 #define SkCanvasAndroid_DEFINED
10 
11 class SkCanvas;
12 struct SkIRect;
13 class GrBackendRenderTarget;
14 
15 namespace skgpu::ganesh {
16 SkIRect TopLayerBounds(const SkCanvas*);
17 GrBackendRenderTarget TopLayerBackendRenderTarget(const SkCanvas*);
18 }
19 
20 #endif
21