summaryrefslogtreecommitdiffstats
path: root/graphics/java/android/renderscript/Type.java
diff options
context:
space:
mode:
authorRobert Ly <robertly@google.com>2011-02-09 13:57:06 -0800
committerRobert Ly <robertly@google.com>2011-02-09 16:24:12 -0800
commit11518acc8c416023d8c2192b441a1767205676d9 (patch)
tree569e1021ca720dc13aaf513013cb1e8c2c002ddd /graphics/java/android/renderscript/Type.java
parent3f41d8f5ee1a8d5366d79ee03d97fac8403c676a (diff)
downloadframeworks_base-11518acc8c416023d8c2192b441a1767205676d9.zip
frameworks_base-11518acc8c416023d8c2192b441a1767205676d9.tar.gz
frameworks_base-11518acc8c416023d8c2192b441a1767205676d9.tar.bz2
clean up and add javadocs
Change-Id: I7f628106247de887cd91c4a4b4b55d3ebfa700c8
Diffstat (limited to 'graphics/java/android/renderscript/Type.java')
-rw-r--r--graphics/java/android/renderscript/Type.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/java/android/renderscript/Type.java b/graphics/java/android/renderscript/Type.java
index bec76d0..9979e2a 100644
--- a/graphics/java/android/renderscript/Type.java
+++ b/graphics/java/android/renderscript/Type.java
@@ -21,19 +21,19 @@ import java.lang.reflect.Field;
import android.util.Log;
/**
- * Type is an allocation template. It consists of an Element and one or more
- * dimensions. It describes only the layout of memory but does not allocate and
- * storage for the data thus described.
+ * <p>Type is an allocation template. It consists of an Element and one or more
+ * dimensions. It describes only the layout of memory but does not allocate any
+ * storage for the data that is described.</p>
*
- * A Type consists of several dimensions. Those are X, Y, Z, LOD (level of
+ * <p>A Type consists of several dimensions. Those are X, Y, Z, LOD (level of
* detail), Faces (faces of a cube map). The X,Y,Z dimensions can be assigned
* any positive integral value within the constraints of available memory. A
* single dimension allocation would have an X dimension of greater than zero
* while the Y and Z dimensions would be zero to indicate not present. In this
* regard an allocation of x=10, y=1 would be considered 2 dimensionsal while
- * x=10, y=0 would be considered 1 dimensional.
+ * x=10, y=0 would be considered 1 dimensional.</p>
*
- * The LOD and Faces dimensions are booleans to indicate present or not present.
+ * <p>The LOD and Faces dimensions are booleans to indicate present or not present.</p>
*
**/
public class Type extends BaseObj {