Home
last modified time | relevance | path

Searched refs:Path2DBuilder (Results 1 – 4 of 4) sorted by relevance

/external/skia/experimental/SkV8Example/
DPath2DBuilder.cpp15 Global* Path2DBuilder::gGlobal = NULL;
17 void Path2DBuilder::ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args) { in ConstructPath()
19 Path2DBuilder* path = new Path2DBuilder(); in ConstructPath()
33 void Path2DBuilder::AddToGlobal(Global* global) { in AddToGlobal()
45 gGlobal->getIsolate(), Path2DBuilder::ConstructPath); in AddToGlobal()
64 Path2DBuilder* Path2DBuilder::Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args) { in Unwrap()
68 return static_cast<Path2DBuilder*>(ptr); in Unwrap()
71 void Path2DBuilder::ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args) { in ClosePath()
72 Path2DBuilder* path = Unwrap(args); in ClosePath()
76 void Path2DBuilder::MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args) { in MoveTo()
[all …]
DPath2DBuilder.h20 class Path2DBuilder : SkNoncopyable {
22 Path2DBuilder() : fSkPath() {} in Path2DBuilder() function
23 virtual ~Path2DBuilder() {} in ~Path2DBuilder()
48 static Path2DBuilder* Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args);
DSkV8Example.cpp211 Path2DBuilder::AddToGlobal(global); in create_sk_window()
/external/skia/experimental/SkV8Example/js/
Dsample.js6 var b = new Path2DBuilder();