blob: 8f817c3c7d6bb39195f217f34e2eeab09380dd31 [file] [log] [blame]
package androidx.webgpu
import android.graphics.Bitmap
/** Interface for components that can store test artifacts like bitmaps. */
interface Storage {
/**
* Write a bitmap to storage.
*
* @param imageName The name to give the image in storage.
* @param bitmap The bitmap to store.
*/
fun writeImage(imageName: String, bitmap: Bitmap)
}