summaryrefslogtreecommitdiff
path: root/libs/rs/RenderScript.h
diff options
context:
space:
mode:
author Jason Sams <rjsams@android.com> 2010-12-29 14:31:29 -0800
committer Jason Sams <rjsams@android.com> 2010-12-29 14:31:29 -0800
commit49a05d7b82956009f03acbb92a064eed054eb031 (patch)
treed0cd4c1b228dfbf08170ffe1712087df41ac38fd /libs/rs/RenderScript.h
parent5c68a712dacf8cf0a419f1b743474a3b4290d024 (diff)
Move adapter2D to a derived class from Allocation.
Change-Id: I7e9d8b0028ba95956476f253da38dbe64564d0da
Diffstat (limited to 'libs/rs/RenderScript.h')
-rw-r--r--libs/rs/RenderScript.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/rs/RenderScript.h b/libs/rs/RenderScript.h
index 3ad453f4fa4f..87758e584931 100644
--- a/libs/rs/RenderScript.h
+++ b/libs/rs/RenderScript.h
@@ -111,6 +111,15 @@ enum RsAllocationMipmapControl {
RS_ALLOCATION_MIPMAP_ON_SYNC_TO_TEXTURE = 2
};
+enum RsAllocationCubemapFace {
+ RS_ALLOCATION_CUBMAP_FACE_POSITVE_X = 0,
+ RS_ALLOCATION_CUBMAP_FACE_NEGATIVE_X = 1,
+ RS_ALLOCATION_CUBMAP_FACE_POSITVE_Y = 2,
+ RS_ALLOCATION_CUBMAP_FACE_NEGATIVE_Y = 3,
+ RS_ALLOCATION_CUBMAP_FACE_POSITVE_Z = 4,
+ RS_ALLOCATION_CUBMAP_FACE_NEGATIVE_Z = 5
+};
+
enum RsDataType {
RS_TYPE_NONE,
RS_TYPE_FLOAT_16,