Home | History | Annotate | Download | only in SkV8Example

Lines Matching defs:Path2D

10 #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) {
25 // Just once create the ObjectTemplate for what Path2D looks like in JS.
37 // Create an empty Path2D wrapper.
51 Path2D::~Path2D() {