tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

SkClipStackUtils.h (440B)


      1 /*
      2 * Copyright 2019 Google Inc.
      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 SkClipStackUtils_DEFINED
      9 #define SkClipStackUtils_DEFINED
     10 
     11 #include "include/core/SkTypes.h"
     12 
     13 class SkClipStack;
     14 class SkPath;
     15 
     16 // Return the resolved clipstack as a single path.
     17 // Note: uses SkPathOps as part of its implementation.
     18 //
     19 SkPath SkClipStack_AsPath(const SkClipStack&);
     20 
     21 #endif