From 6ab7bec764f76c255f2b1f700b6f7b253ff371d9 Mon Sep 17 00:00:00 2001 From: Chris Dill Date: Thu, 30 Jan 2025 18:39:23 +0000 Subject: [PATCH] Update PixelFormat (#292) --- Raylib-cs/types/Image.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Raylib-cs/types/Image.cs b/Raylib-cs/types/Image.cs index fb6f6f9..ab15020 100644 --- a/Raylib-cs/types/Image.cs +++ b/Raylib-cs/types/Image.cs @@ -58,6 +58,21 @@ public enum PixelFormat /// UncompressedR32G32B32A32, + /// + /// 16 bpp (1 channel - half float) + /// + UncompressedR16, + + /// + /// 16*3 bpp (3 channels - half float) + /// + UncompressedR16G16B16, + + /// + /// 16*4 bpp (4 channels - half float) + /// + UncompressedR16G16B16A16, + /// /// 4 bpp (no alpha) ///