From f830626579c72ac242516284066e7e707861d17e Mon Sep 17 00:00:00 2001 From: "H. Utku Maden" <utkumaden@hotmail.com> Date: Sun, 2 Jul 2023 10:38:32 +0300 Subject: [PATCH] Add RedAlpha image formats. --- Quik/Media/ImageFormat.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Quik/Media/ImageFormat.cs b/Quik/Media/ImageFormat.cs index 77c3d7a..4423fd0 100644 --- a/Quik/Media/ImageFormat.cs +++ b/Quik/Media/ImageFormat.cs @@ -4,6 +4,7 @@ namespace Quik.Media { public enum QImageFormat { + Undefined, RedU8, RgbU8, RgbaU8, @@ -11,6 +12,8 @@ namespace Quik.Media RgbF, RgbaF, AlphaU8, - AlphaF + AlphaF, + RaU8, + RaF, } } \ No newline at end of file