Searched defs:Path2D (Results 1 - 2 of 2) sorted by relevance

/external/skia/experimental/SkV8Example/
H A DPath2D.cpp10 #include "Path2D.h"
13 Global* Path2D::gGlobal = NULL;
14 v8::Persistent<v8::ObjectTemplate> Path2D::gPath2DTemplate;
16 void weakPath2DCallback(const v8::WeakCallbackData<v8::Object, Path2D>& args) {
20 // Wraps an SkPath* in a Path2D object.
21 Path2D::Path2D(SkPath* path) : path_(path) { function in class:Path2D
25 // Just once create the ObjectTemplate for what Path2D looks like in JS.
37 // Create an empty Path2D wrapper.
51 Path2D
[all...]
H A DPath2D.h20 // Path2D bridges between JS and SkPath.
21 class Path2D : SkNoncopyable { class in inherits:SkNoncopyable
23 Path2D(SkPath* path);
24 virtual ~Path2D();
47 // The template for what a JS Path2D object looks like.

Completed in 198 milliseconds