public Texture(string textureName) { identifier = Gl.GenTextures(); this.textureName = textureName; }
public override void Bind() { CurrentlyBound = this; Gl.BindTexture(GL_TEXTURE_2D, identifier); }