mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-18 08:56:45 -05:00
vulkan: Add vulkan-blit-dsp-filter
This commit is contained in:
parent
3e3a13c567
commit
a1615fe6a3
5 changed files with 903 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
|||
extern const struct spa_handle_factory spa_vulkan_compute_filter_factory;
|
||||
extern const struct spa_handle_factory spa_vulkan_compute_source_factory;
|
||||
extern const struct spa_handle_factory spa_vulkan_blit_filter_factory;
|
||||
extern const struct spa_handle_factory spa_vulkan_blit_dsp_filter_factory;
|
||||
|
||||
SPA_EXPORT
|
||||
int spa_handle_factory_enum(const struct spa_handle_factory **factory, uint32_t *index)
|
||||
|
|
@ -26,6 +27,9 @@ int spa_handle_factory_enum(const struct spa_handle_factory **factory, uint32_t
|
|||
case 2:
|
||||
*factory = &spa_vulkan_blit_filter_factory;
|
||||
break;
|
||||
case 3:
|
||||
*factory = &spa_vulkan_blit_dsp_filter_factory;
|
||||
break;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue