コード例 #1
0
ファイル: texture.go プロジェクト: klkblake/sge
func (tex *Texture) Delete() {
	gl33.DeleteTextures(1, &tex.Id)
}
コード例 #2
0
ファイル: texture.go プロジェクト: extemporalgenome/baukasten
// Delete deletes the memory buffer on the graphic card.
func (t *Texture) Delete() {
	gl.DeleteTextures(1, &t.id)
}