diff options
| author | 2010-12-29 14:31:29 -0800 | |
|---|---|---|
| committer | 2010-12-29 14:31:29 -0800 | |
| commit | 49a05d7b82956009f03acbb92a064eed054eb031 (patch) | |
| tree | d0cd4c1b228dfbf08170ffe1712087df41ac38fd /libs/rs/RenderScript.h | |
| parent | 5c68a712dacf8cf0a419f1b743474a3b4290d024 (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.h | 9 |
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, |