Files
AR-Menu/Library/PackageCache/com.unity.cloud.gltfast@db5a82ec0b47/Runtime/Scripts/ImageCreateContext.cs
2025-11-30 08:35:03 +02:00

18 lines
368 B
C#

// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using System.Runtime.InteropServices;
using Unity.Jobs;
namespace GLTFast
{
struct ImageCreateContext
{
public int imageIndex;
public byte[] buffer;
public GCHandle gcHandle;
public JobHandle jobHandle;
}
}