blob: 01c57f07af364155ab06fb2c68d6437e6fd25dcd [file] [log] [blame]
package androidx.webgpu
import kotlin.annotation.Retention
import kotlin.annotation.Target
@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.FUNCTION)
annotation class ApiRequirement(
val minApi: Int,
val onlySkipOnEmulator: Boolean = false
)