Merge "yuv"

This commit is contained in:
Jason Sams
2013-01-02 16:10:53 -08:00
committed by Android (Google) Code Review
3 changed files with 4 additions and 1 deletions

View File

@@ -19394,6 +19394,7 @@ package android.renderscript {
enum_constant public static final android.renderscript.Element.DataKind PIXEL_LA;
enum_constant public static final android.renderscript.Element.DataKind PIXEL_RGB;
enum_constant public static final android.renderscript.Element.DataKind PIXEL_RGBA;
enum_constant public static final android.renderscript.Element.DataKind PIXEL_YUV;
enum_constant public static final android.renderscript.Element.DataKind USER;
}

View File

@@ -171,7 +171,8 @@ public class Element extends BaseObj {
PIXEL_LA (9),
PIXEL_RGB (10),
PIXEL_RGBA (11),
PIXEL_DEPTH (12);
PIXEL_DEPTH (12),
PIXEL_YUV(13);
int mID;
DataKind(int id) {

View File

@@ -47,6 +47,7 @@ public class Type extends BaseObj {
int mDimZ;
boolean mDimMipmaps;
boolean mDimFaces;
int mDimYuv;
int mElementCount;
Element mElement;