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

Commit 256377e7 authored by Jason Sams's avatar Jason Sams Committed by Android (Google) Code Review
Browse files

Merge "yuv"

parents cac9bbd7 8140d7b0
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;