mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[cscore] Add BGRA support (#6365)
This commit is contained in:
@@ -21,7 +21,9 @@ public enum PixelFormat {
|
||||
/** Grayscale, 16 bpp. */
|
||||
kY16(6),
|
||||
/** YUV 4:2:2, 16 bpp. */
|
||||
kUYVY(7);
|
||||
kUYVY(7),
|
||||
/** BGRA 8-8-8-8. 32 bpp. */
|
||||
kBGRA(8);
|
||||
|
||||
private final int value;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user