Flutter Engine
The Flutter Engine
Public Member Functions | List of all members
SkAutoDisableDirectionCheck Class Reference

Public Member Functions

 SkAutoDisableDirectionCheck (SkPath *path)
 
 ~SkAutoDisableDirectionCheck ()
 

Detailed Description

Definition at line 77 of file SkPath.cpp.

Constructor & Destructor Documentation

◆ SkAutoDisableDirectionCheck()

SkAutoDisableDirectionCheck::SkAutoDisableDirectionCheck ( SkPath path)
inline

Definition at line 79 of file SkPath.cpp.

79 : fPath(path) {
80 fSaved = static_cast<SkPathFirstDirection>(fPath->getFirstDirection());
81 }
SkPathFirstDirection
Definition: SkPathEnums.h:19
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition: switches.h:57

◆ ~SkAutoDisableDirectionCheck()

SkAutoDisableDirectionCheck::~SkAutoDisableDirectionCheck ( )
inline

Definition at line 83 of file SkPath.cpp.

83 {
84 fPath->setFirstDirection(fSaved);
85 }

The documentation for this class was generated from the following file: