http://skiaperf.com/#108
BUG=skia:
R=reed@google.com, mtklein@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/
496603002
if (NULL == data) {
return NULL;
}
+#if 0
const SkPicture src(data, info.fWidth, info.fHeight);
return Forwardport(src);
+#else
+ return SkNEW_ARGS(SkPicture, (data, info.fWidth, info.fHeight));
+#endif
}
return NULL;
if (NULL == data) {
return NULL;
}
+#if 0
const SkPicture src(data, info.fWidth, info.fHeight);
return Forwardport(src);
+#else
+ return SkNEW_ARGS(SkPicture, (data, info.fWidth, info.fHeight));
+#endif
}
return NULL;