var Context = require('./Context');
function Texture(target) {
if (target) {
this.init(target);
}
}
Texture.RGBA32F = 34836;
Texture.prototype.init = function(target) {
this.gl = Context.currentContext;
this.target = target;
this.handle = this.gl.createTexture();
};