mirror of
https://github.com/openstf/stf
synced 2025-10-05 02:29:26 +02:00
15 lines
No EOL
256 B
JavaScript
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 |