16 lines
269 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
using System;
namespace unity.libwebp.Interop
{
public unsafe partial struct WebPRGBABuffer
{
[NativeTypeName("uint8_t *")]
public byte* rgba;
public int stride;
[NativeTypeName("size_t")]
public UIntPtr size;
}
}