1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00
OpenSTF/res/app/components/stf/screen/image-render/webgl/index.js
2014-02-19 23:55:08 +09:00

15 lines
No EOL
256 B
JavaScript

// Based on http://jsperf.com/canvas-drawimage-vs-webgl-drawarrays
function WebGLRender(options) {
this.options = options
}
WebGLRender.prototype.draw = function (image) {
}
WebGLRender.prototype.clear = function () {
}
module.exports = WebGLRender