40 lines
1.4 KiB
Zig
40 lines
1.4 KiB
Zig
const ChainedStruct = @import("types.zig").ChainedStruct;
|
|
const PresentMode = @import("types.zig").PresentMode;
|
|
const Texture = @import("texture.zig").Texture;
|
|
const TextureUsageFlags = @import("texture.zig").TextureUsageFlags;
|
|
const TextureFormat = @import("texture.zig").TextureFormat;
|
|
const TextureView = @import("texture_view.zig").TextureView;
|
|
const impl = @import("interface.zig").impl;
|
|
|
|
pub const SwapChain = *opaque {
|
|
pub inline fn configure(swap_chain: SwapChain, format: TextureFormat, allowed_usage: TextureUsageFlags, width: u32, height: u32) void {
|
|
impl.swapChainConfigure(swap_chain, format, allowed_usage, width, height);
|
|
}
|
|
|
|
pub inline fn getCurrentTextureView(swap_chain: SwapChain) TextureView {
|
|
return impl.swapChainGetCurrentTextureView(swap_chain);
|
|
}
|
|
|
|
pub inline fn present(swap_chain: SwapChain) void {
|
|
impl.swapChainPresent(swap_chain);
|
|
}
|
|
|
|
pub inline fn reference(swap_chain: SwapChain) void {
|
|
impl.swapChainReference(swap_chain);
|
|
}
|
|
|
|
pub inline fn release(swap_chain: SwapChain) void {
|
|
impl.swapChainRelease(swap_chain);
|
|
}
|
|
};
|
|
|
|
pub const SwapChainDescriptor = extern struct {
|
|
next_in_chain: *const ChainedStruct,
|
|
label: ?[*:0]const u8 = null,
|
|
usage: TextureUsageFlags,
|
|
format: TextureFormat,
|
|
width: u32,
|
|
height: u32,
|
|
present_mode: PresentMode,
|
|
implementation: u64,
|
|
};
|