This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PhotoCameraLuminanceSource : LuminanceSource | |
| { | |
| public byte[] PreviewBufferY { get; private set; } | |
| public PhotoCameraLuminanceSource(int width, int height) : base(width, height) | |
| { | |
| PreviewBufferY = new byte[width * height]; | |
| } | |
| public override sbyte[] Matrix |