Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion FFXIVClientStructs/FFXIV/Client/Graphics/Kernel/SwapChain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ namespace FFXIVClientStructs.FFXIV.Client.Graphics.Kernel;
// Client::Graphics::DelayedReleaseClassBase
// Client::Graphics::ReferencedClassBase
// Client::Graphics::Kernel::Notifier
[GenerateInterop]
[StructLayout(LayoutKind.Explicit, Size = 0x78)]
public unsafe struct SwapChain {
public unsafe partial struct SwapChain {
[FieldOffset(0x38)] public uint Width;
[FieldOffset(0x3C)] public uint Height;
[FieldOffset(0x58)] public Texture* BackBuffer;
[FieldOffset(0x60)] public Texture* DepthStencil;
[FieldOffset(0x68)] public void* DXGISwapChain; // IDXGISwapChain

[MemberFunction("E8 ?? ?? ?? ?? C6 46 79 00 EB 40")]
public partial void Present();
}
Loading