Firstborn/Library/PackageCache/com.unity.burst@1.7.3/Tests/Runtime/Shared/090-Vectors-Statics.cs

44 lines
863 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
using Burst.Compiler.IL.Tests.Helpers;
using Unity.Mathematics;
namespace Burst.Compiler.IL.Tests
{
internal partial class VectorsStatics
{
[TestCompiler]
public static float Float4Zero()
{
return (float4.zero).x;
}
[TestCompiler]
public static float Float3Zero()
{
return (float3.zero).x;
}
[TestCompiler]
public static float Float2Zero()
{
return (float2.zero).x;
}
[TestCompiler]
public static int Int4Zero()
{
return (int4.zero).x;
}
[TestCompiler]
public static int Int3Zero()
{
return (int3.zero).x;
}
[TestCompiler]
public static int Int2Zero()
{
return (int2.zero).x;
}
}
}