Untitled

/**
 * Simple wrapper for the native GraphicBuffer class.
 * @hide
 */
public class GraphicBuffer implements Parcelable {
    ...
    private final int mWidth;
    private final int mHeight;
    private final int mFormat;
    private final int mUsage;
    // Note: do not rename, this field is used by native code
    private final long mNativeObject;

    // These two fields are only used by lock/unlockCanvas()
    private Canvas mCanvas;
    private int mSaveCount;
    ...
}