Added in API level 18
Deprecated in API level 31

ContextType

class ContextType
kotlin.Any
   ↳ kotlin.Enum<android.renderscript.RenderScript.ContextType>
   ↳ android.renderscript.RenderScript.ContextType

ContextType specifies the specific type of context to be created.

Summary

Enum values

DEBUG context, perform extra runtime checks to validate the kernels and APIs are being used as intended.

NORMAL context, this is the default and what shipping apps should use.

PROFILE context, Intended to be used once the first time an application is run on a new device.

Enum values

DEBUG

Added in API level 18
enum val DEBUG : RenderScript.ContextType

Deprecated: Deprecated in Java.

DEBUG context, perform extra runtime checks to validate the kernels and APIs are being used as intended. Get and SetElementAt will be bounds checked in this mode.

NORMAL

Added in API level 18
enum val NORMAL : RenderScript.ContextType

Deprecated: Deprecated in Java.

NORMAL context, this is the default and what shipping apps should use.

PROFILE

Added in API level 18
enum val PROFILE : RenderScript.ContextType

Deprecated: Deprecated in Java.

PROFILE context, Intended to be used once the first time an application is run on a new device. This mode allows the runtime to do additional testing and performance tuning.