Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static final enum

Allocation.MipmapControl

extends Enum <E extends  Enum <E>>
java.lang.Object
   ↳ java.lang.Enum <E extends  java.lang.Enum <E>>
     ↳ android.support.v8.renderscript.Allocation.MipmapControl

Class Overview

Controls mipmap behavior when using the bitmap creation and update functions.

Summary

Enum Values
Allocation.MipmapControl   MIPMAP_FULL  A full mipmap chain will be created in script memory. 
Allocation.MipmapControl   MIPMAP_NONE  No mipmaps will be generated and the type generated from the incoming bitmap will not contain additional LODs. 
Allocation.MipmapControl   MIPMAP_ON_SYNC_TO_TEXTURE  The Type of the Allocation will be the same as MIPMAP_NONE. 
Public Methods
static Allocation.MipmapControl valueOf ( String name)
final static MipmapControl[] values ()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Allocation.MipmapControl MIPMAP_FULL

A full mipmap chain will be created in script memory. The Type of the Allocation will contain a full mipmap chain. On upload, the full chain will be transferred.

public static final Allocation.MipmapControl MIPMAP_NONE

No mipmaps will be generated and the type generated from the incoming bitmap will not contain additional LODs.

public static final Allocation.MipmapControl MIPMAP_ON_SYNC_TO_TEXTURE

The Type of the Allocation will be the same as MIPMAP_NONE. It will not contain mipmaps. On upload, the allocation data will contain a full mipmap chain generated from the top level in script memory.

Public Methods

public static Allocation.MipmapControl valueOf ( String name)

public static final MipmapControl[] values ()