unloadMaterial function

void unloadMaterial(
  1. Material material
)

Unload material from GPU memory (VRAM).

Implementation

void unloadMaterial(Material material) {
  return library.UnloadMaterial(material.ref);
}