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

Commit c0ae66a0 authored by Leon Scroggins III's avatar Leon Scroggins III
Browse files

Add AIDL PixelFormat::R_8

Bug: 193170859
Bug: 209497983
Test: build and boot
Test: TODO (b/209458105)
Change-Id: I6f6b7f22e76609151a413ca6a6dbf55bd91911dd
parent d709be7d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -63,4 +63,5 @@ enum PixelFormat {
  STENCIL_8 = 53,
  YCBCR_P010 = 54,
  HSV_888 = 55,
  R_8 = 56,
}
+7 −0
Original line number Diff line number Diff line
@@ -498,4 +498,11 @@ enum PixelFormat {
     * interpretation is defined by the dataspace.
     */
    HSV_888 = 0x37,

    /**
     * 8 bit format with a single 8-bit component.
     *
     * The component values are unsigned normalized to the range [0, 1].
     */
    R_8 = 0x38,
}