overwrite method

void overwrite(
  1. ByteData sourceBytes
)

Overwrite the entire base mipmap level of this Texture.

This method can only be used if the Texture was created with StorageMode.hostVisible. An exception will be thrown otherwise.

The length of sourceBytes must be exactly the size of the base mip level, otherwise an exception will be thrown. The size of the base mip level is always width * height * bytesPerPixel.

Throws an exception if the write failed due to an internal error.

Implementation

void overwrite(ByteData sourceBytes) {
  if (storageMode != StorageMode.hostVisible) {
    throw Exception(
      'Texture.overwrite can only be used with Textures that are host visible',
    );
  }
  int baseMipSize = getBaseMipLevelSizeInBytes();
  if (sourceBytes.lengthInBytes != baseMipSize) {
    throw Exception(
      'The length of sourceBytes (bytes: ${sourceBytes.lengthInBytes}) must exactly match the size of the base mip level (bytes: ${baseMipSize})',
    );
  }
  bool success = _overwrite(sourceBytes);
  if (!success) {
    throw Exception("Texture overwrite failed");
  }
}