aboutsummaryrefslogtreecommitdiff
path: root/adapters/fparkan-render-vulkan/src/ffi.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-07-18 07:31:19 +0300
committerValentin Popov <valentin@popov.link>2026-07-18 07:31:19 +0300
commit4b741fb19c495a29bc12f6f057df01c91c1d9097 (patch)
tree02983585bfdec0b14f84d02bed99d3f7a9eb1f62 /adapters/fparkan-render-vulkan/src/ffi.rs
parent645eca551004f9eea8e2276e9110f3a66a1ddc69 (diff)
downloadfparkan-4b741fb19c495a29bc12f6f057df01c91c1d9097.tar.xz
fparkan-4b741fb19c495a29bc12f6f057df01c91c1d9097.zip
feat(vulkan): add depth attachment pipeline support
Diffstat (limited to 'adapters/fparkan-render-vulkan/src/ffi.rs')
-rw-r--r--adapters/fparkan-render-vulkan/src/ffi.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/adapters/fparkan-render-vulkan/src/ffi.rs b/adapters/fparkan-render-vulkan/src/ffi.rs
index 91c8254..c722656 100644
--- a/adapters/fparkan-render-vulkan/src/ffi.rs
+++ b/adapters/fparkan-render-vulkan/src/ffi.rs
@@ -53,10 +53,10 @@ pub use self::instance::{
#[cfg(test)]
use self::instance::{cstring_vec, ensure_instance_extensions_available};
use self::resources::{
- color_subresource_range, create_command_pool, create_frame_sync,
+ color_subresource_range, create_command_pool, create_depth_attachment, create_frame_sync,
create_static_mesh_index_buffer, create_static_mesh_vertex_buffer, create_static_texture_image,
- destroy_allocated_buffer, destroy_allocated_image, VulkanAllocatedBuffer, VulkanAllocatedImage,
- VulkanFrameSync,
+ destroy_allocated_buffer, destroy_allocated_image, destroy_depth_attachment,
+ VulkanAllocatedBuffer, VulkanAllocatedImage, VulkanDepthAttachment, VulkanFrameSync,
};
pub use self::runtime::{
create_vulkan_logical_device_probe, create_vulkan_logical_device_probe_for_request,