Firstborn/Library/PackageCache/com.unity.burst@1.8.4/Tests/Runtime/Shared/090-Vectors-Statics.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

44 lines
863 B
C#

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;
}
}
}