UnloadTexture method
Unload texture from GPU memory (VRAM)
Implementation
@override
void UnloadTexture(
TextureD texture,
) => run(
() => RaylibDebugLabels.UnloadTexture(texture),
() => rl.Core.UnloadTexture(
texture.getOriginalPointerAndDispose().ref,
),
);