VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.render-pipelines.universal/Runtime/Tiling/TileSize.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

19 lines
410 B
C#

namespace UnityEngine.Rendering.Universal
{
internal enum TileSize
{
_8 = 8,
_16 = 16,
_32 = 32,
_64 = 64
}
static class TileSizeExtensions
{
public static bool IsValid(this TileSize tileSize)
{
return tileSize == TileSize._8 || tileSize == TileSize._16 || tileSize == TileSize._32 || tileSize == TileSize._64;
}
}
}