HomeSort by relevance Sort by last modified time
    Searched defs:Path2D (Results 1 - 2 of 2) sorted by null

  /external/skia/experimental/SkV8Example/
Path2D.cpp 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()
    [all...]
Path2D.h 20 // Path2D bridges between JS and SkPath.
21 class Path2D : SkNoncopyable {
23 Path2D(SkPath* path);
24 virtual ~Path2D();
47 // The template for what a JS Path2D object looks like.

Completed in 382 milliseconds