Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8140d7b0 authored by Jason Sams's avatar Jason Sams
Browse files

yuv

Change-Id: I3e99740250f1a3cb356bf6906528abc71f8cee2e
parent d6a7925d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
  }
+2 −1
Original line number Diff line number Diff line
@@ -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) {
+1 −0
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@ public class Type extends BaseObj {
    int mDimZ;
    boolean mDimMipmaps;
    boolean mDimFaces;
    int mDimYuv;
    int mElementCount;
    Element mElement;