May 11, 2023, 18:15 by [email protected]: > Quoting Lynne (2023-04-24 17:56:38) > >> From d81aa7b001995a8cf65590934a7b75a51a63b192 Mon Sep 17 00:00:00 2001 >> From: Lynne <[email protected]> >> Date: Wed, 23 Nov 2022 14:04:48 +0100 >> Subject: [PATCH 39/97] vulkan: define VK_NO_PROTOTYPES >> > > Some context on what this does and why is it needed would be nice. >
This just disables the vulkan headers from defining any symbols like vkCmdPipelineBarrier2(). Instead, all functions must be loaded via the loader and used as function pointers as vk->CmdPipelineBarrier2.Mostly just forces developers to write correct code, as using the symbols can be undesirable in case API users define their own function wrappers via the loader API. _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
