2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Update PixelFormat (#292)

This commit is contained in:
Chris Dill 2025-01-30 18:39:23 +00:00 committed by GitHub
parent 86439d0eda
commit 6ab7bec764
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,6 +58,21 @@ public enum PixelFormat
/// </summary>
UncompressedR32G32B32A32,
/// <summary>
/// 16 bpp (1 channel - half float)
/// </summary>
UncompressedR16,
/// <summary>
/// 16*3 bpp (3 channels - half float)
/// </summary>
UncompressedR16G16B16,
/// <summary>
/// 16*4 bpp (4 channels - half float)
/// </summary>
UncompressedR16G16B16A16,
/// <summary>
/// 4 bpp (no alpha)
/// </summary>