Relax job constraints, add ref type support, misc fixes

Relaxed generic constraints for job scheduling/execution to allow reference types (removed struct requirement). Updated IJob, IJobParallelFor, and IJobParallel extension methods to support both value and reference types, introducing RunRef for struct-specific overloads. Adjusted JobExecutor and JobScheduler to match new constraints. Bumped assembly version to 3.1.1. Added Value property to Wrapper<T> for ref access and inlined Get(). Changed GGXMipGenerationJob sample count to linear roughness. Removed unused usings in JobInfo.cs.
This commit is contained in:
2026-04-27 12:54:29 +09:00
parent 9f7507ba71
commit 8ce7fddd32
8 changed files with 44 additions and 23 deletions

View File

@@ -41,7 +41,13 @@ public interface IJobParallel
public static class IJobExtensions
{
public static void Run<T>(this ref T job, ref readonly JobExecutionContext ctx)
public static void Run<T>(this T job, ref readonly JobExecutionContext ctx)
where T : IJob
{
job.Execute(in ctx);
}
public static void RunRef<T>(this ref T job, ref readonly JobExecutionContext ctx)
where T : struct, IJob
{
job.Execute(in ctx);
@@ -50,7 +56,16 @@ public static class IJobExtensions
public static class IJobParallelForExtensions
{
public static void Run<T>(this ref T job, int totalIterations, ref readonly JobExecutionContext ctx)
public static void Run<T>(this T job, int totalIterations, ref readonly JobExecutionContext ctx)
where T : IJobParallelFor
{
for (var i = 0; i < totalIterations; i++)
{
job.Execute(i, in ctx);
}
}
public static void RunRef<T>(this ref T job, int totalIterations, ref readonly JobExecutionContext ctx)
where T : struct, IJobParallelFor
{
for (var i = 0; i < totalIterations; i++)
@@ -62,7 +77,13 @@ public static class IJobParallelForExtensions
public static class IJobParallelExtensions
{
public static void Run<T>(this ref T job, int totalIterations, ref readonly JobExecutionContext ctx)
public static void Run<T>(this T job, int totalIterations, ref readonly JobExecutionContext ctx)
where T : IJobParallel
{
job.Execute(0, totalIterations, in ctx);
}
public static void RunRef<T>(this ref T job, int totalIterations, ref readonly JobExecutionContext ctx)
where T : struct, IJobParallel
{
job.Execute(0, totalIterations, in ctx);