callocAllFree method

void callocAllFree()

Implementation

void callocAllFree() {
  if (ref.samplerBindings != nullptr) {
    ref.samplerBindings.callocFree();
  }
  if (ref.storageTextures != nullptr) {
    ref.storageTextures.callocFree();
  }
  if (ref.storageBuffers != nullptr) {
    ref.storageBuffers.callocFree();
  }
  callocFree();
}