Texture constructor

Texture(
  1. String name,
  2. int len,
  3. int hgt
)

Implementation

Texture(this.name, this.len, this.hgt) {
  textureID = Engine.flutterGlPlugin.gl.createTexture();
}