SdlxGpuStorageTextureReadWriteBinding constructor

SdlxGpuStorageTextureReadWriteBinding({
  1. Pointer<SdlGpuTexture>? texture,
  2. int mipLevel = 0,
  3. int layer = 0,
  4. int cycle = 0,
})

Implementation

SdlxGpuStorageTextureReadWriteBinding({
  Pointer<SdlGpuTexture>? texture,
  this.mipLevel = 0,
  this.layer = 0,
  this.cycle = 0,
}) {
  this.texture = texture ?? nullptr;
}