Both gears and snow should detect if Path is available, and also report on the console if present.
BUG=skia: R=robertphillips@google.com Author: jcgregorio@google.com Review URL: https://codereview.chromium.org/143743004 git-svn-id: http://skia.googlecode.com/svn/trunk@13147 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
5a064e3af8
commit
c896f4de12
@ -139,3 +139,4 @@ if (!IS_SKV8) {
|
||||
}
|
||||
}
|
||||
|
||||
console.log("HAS_PATH: " + HAS_PATH);
|
||||
|
@ -1,9 +1,10 @@
|
||||
var IS_SKV8 = typeof document == "undefined";
|
||||
var HAS_PATH = typeof Path != "undefined";
|
||||
|
||||
function circlePath(r) {
|
||||
if (IS_SKV8) {
|
||||
if (HAS_PATH) {
|
||||
var p = new Path();
|
||||
p.oval(0, 0, r, r);
|
||||
p.arc(0, 0, r, 0, 2*Math.PI);
|
||||
p.closePath();
|
||||
return p;
|
||||
} else {
|
||||
@ -48,7 +49,7 @@ var onDraw = function() {
|
||||
if(p.y>(H+1)){
|
||||
p.y = 0;
|
||||
}
|
||||
if (IS_SKV8) {
|
||||
if (HAS_PATH) {
|
||||
ctx.save();
|
||||
ctx.translate(p.x, p.y);
|
||||
ctx.fill(p.path);
|
||||
@ -90,3 +91,5 @@ if (!IS_SKV8) {
|
||||
setTimeout(drawCallback, 1);
|
||||
}
|
||||
}
|
||||
|
||||
console.log("HAS_PATH: " + HAS_PATH);
|
||||
|
Loading…
Reference in New Issue
Block a user