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

Commit 96c0c370 authored by layog's avatar layog
Browse files

Fix subsampling doc in PlaneLayout.aidl

A subsampling value of 1 is a valid value indicating no subsampling

Fix: 158067777
Test: Compiles
Change-Id: I58f20df0b61e3637cb01a69f28ecef414f88a27d
parent ac4ee962
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -100,10 +100,11 @@ parcelable PlaneLayout {
    long totalSizeInBytes;

    /**
     * Horizontal and vertical subsampling. Must be a positive power of 2.
     * Horizontal and vertical subsampling. Must be a positive power of 2. A value of 1
     * indicates no subsampling.
     *
     * These fields indicate the number of horizontally or vertically adjacent pixels that use
     * the same pixel data. A value of 1 indicates no subsampling.
     * the same pixel data.
     */
    long horizontalSubsampling;
    long verticalSubsampling;