From 62b0d590adde33aa45449dd82b9bd4434a712a28 Mon Sep 17 00:00:00 2001 From: Ronny Chan Date: Thu, 26 Jan 2023 10:14:21 -0500 Subject: [PATCH] capi: fix loader PFN type renames --- include/librashader_ld.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/librashader_ld.h b/include/librashader_ld.h index f31ffda..eb326d4 100644 --- a/include/librashader_ld.h +++ b/include/librashader_ld.h @@ -160,7 +160,7 @@ libra_error_t __librashader__noop_d3d11_filter_chain_frame( libra_d3d11_filter_chain_t *chain, size_t frame_count, struct libra_source_image_d3d11_t image, struct libra_viewport_t viewport, const ID3D11RenderTargetView *out, const float *mvp, - const struct frame_vk_opt_t *opt) { + const struct frame_d3d11_opt_t *opt) { return NULL; } @@ -202,7 +202,7 @@ libra_error_t __librashader__noop_vk_filter_chain_frame( libra_vk_filter_chain_t *chain, VkCommandBuffer command_buffer, size_t frame_count, struct libra_image_vk_t image, struct libra_viewport_t viewport, struct libra_image_vk_t out, - const float *mvp, const struct FrameOptionsVulkan *opt) { + const float *mvp, const struct frame_vk_opt_t *opt) { return NULL; } @@ -752,4 +752,4 @@ libra_instance_t librashader_load_instance() { return __librashader_make_null_instance(); } #endif -#endif \ No newline at end of file +#endif