1
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-12-11 04:51:21 +04:00
Files
parkan-playground/TexmLib/Extensions.cs

16 lines
289 B
C#
Raw Normal View History

2024-11-18 23:48:42 +03:00
namespace TexmLib;
2024-11-14 12:04:05 +03:00
public static class Extensions
{
public static int AsStride(this int format)
{
return format switch
{
2025-11-27 19:01:41 +03:00
0x22B8 => 32,
0x115C => 16,
0x235 => 16,
0x378 => 32,
2024-11-14 12:04:05 +03:00
0 => 32
};
}
}