java.lang.Object | ||
↳ | android.renderscript.BaseObj | |
↳ | android.renderscript.Element |
The most basic data type. An element represents one cell of a memory allocation. Element is the basic data type of Renderscript. An element can be of two forms: Basic elements or Complex forms. Examples of basic elements are:
Complex elements contain a list of sub-elements and names that represents a structure of data. The fields can be accessed by name from a script or shader. The memory layout is defined and ordered. Data alignment is determined by the most basic primitive type. i.e. a float4 vector will be aligned to sizeof(float) and not sizeof(float4). The ordering of elements in memory will be the order in which they were added with each component aligned as necessary. No re-ordering will be done.
The primary source of elements are from scripts. A script that exports a bind point for a data structure generates a Renderscript element to represent the data exported by the script. The other common source of elements is from bitmap formats.
For more information about creating an application that uses Renderscript, read the Renderscript developer guide.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Element.Builder | Builder class for producing complex elements with matching field and name pairs. | |||||||||
|
Element.DataKind | The special interpretation of the data if required. | |||||||||
|
Element.DataType | DataType represents the basic type information for a basic element. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
|
|
|||||||||
|
|
|
|||||||||
|
|
Utility function for returning an Element containing a single Boolean.
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
Utility function for returning an Element containing a single SIGNED_8.
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
This method was deprecated in API level 16. use MATRIX_4X4
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
Utility function for returning an Element containing a single UNSIGNED_8.
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
Create a new pixel Element type.
|
|||||||||
|
|
Create a custom vector element of the specified DataType and vector size.
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
|
|||||||||
|
|
For complex elements, this function will return the sub-element at index
|
|||||||||
|
|
For complex elements, some sub-elements could be statically sized arrays.
|
|||||||||
|
|
Elements could be simple, such as an int or a float, or a structure with multiple sub elements, such as a collection of floats, float2, float4.
|
|||||||||
|
|
For complex elements, this function will return the sub-element name at index
|
|||||||||
|
|
This function specifies the location of a sub-element within the element
|
|||||||||
|
|
Returns the number of vector components.
|
|||||||||
|
|
Check if the current Element is compatible with another Element.
|
|||||||||
|
|
Return if a element is too complex for use as a data source for a Mesh or a Program.
|
[Expand]
Inherited Methods
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
|||||||||||
![]() |
Utility function for returning an Element containing a single Boolean.
rs | Context to which the element will belong. |
---|
Utility function for returning an Element containing a single SIGNED_8.
rs | Context to which the element will belong. |
---|
This method was deprecated in API level 16.
use MATRIX_4X4
Utility function for returning an Element containing a single UNSIGNED_8.
rs | Context to which the element will belong. |
---|
Create a new pixel Element type. A matching DataType and DataKind must be provided. The DataType and DataKind must contain the same number of components. Vector size will be set to 1.
rs | The context associated with the new Element. |
---|---|
dt | The DataType for the new element. |
dk | The DataKind to specify the mapping of each component in the DataType. |
Create a custom vector element of the specified DataType and vector size. DataKind will be set to USER. Only primitive types (FLOAT_32, FLOAT_64, SIGNED_8, SIGNED_16, SIGNED_32, SIGNED_64, UNSIGNED_8, UNSIGNED_16, UNSIGNED_32, UNSIGNED_64, BOOLEAN) are supported.
rs | The context associated with the new Element. |
---|---|
dt | The DataType for the new Element. |
size | Vector size for the new Element. Range 2-4 inclusive supported. |
For complex elements, this function will return the sub-element at index
index | index of the sub-element to return |
---|
For complex elements, some sub-elements could be statically sized arrays. This function will return the array size for sub-element at index
index | index of the sub-element |
---|
Elements could be simple, such as an int or a float, or a structure with multiple sub elements, such as a collection of floats, float2, float4. This function returns zero for simple elements or the number of sub-elements otherwise.
For complex elements, this function will return the sub-element name at index
index | index of the sub-element |
---|
This function specifies the location of a sub-element within the element
index | index of the sub-element |
---|
Returns the number of vector components. 2 for float2, 4 for float4, etc.
Check if the current Element is compatible with another Element. Primitive Elements are compatible if they share the same underlying size and type (i.e. U8 is compatible with A_8). User-defined Elements must be equal in order to be compatible. This requires strict name equivalence for all sub-Elements (in addition to structural equivalence).
e | The Element to check compatibility with. |
---|
Return if a element is too complex for use as a data source for a Mesh or a Program.