summaryrefslogtreecommitdiff
path: root/gst-libs/gst/vulkan/gstvkutils.h
blob: 194650e7503a22f6549b1d17d61de320ed10b797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * GStreamer
 * Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */
#ifndef _VK_UTILS_H_
#define _VK_UTILS_H_

#include <gst/gst.h>
#include <gst/vulkan/vulkan.h>

G_BEGIN_DECLS

GST_VULKAN_API
gboolean                gst_vulkan_ensure_element_data          (GstElement * element,
                                                                 GstVulkanDisplay ** display_ptr,
                                                                 GstVulkanInstance ** instance_ptr);
GST_VULKAN_API
gboolean                gst_vulkan_handle_set_context           (GstElement * element,
                                                                 GstContext * context,
                                                                 GstVulkanDisplay ** display,
                                                                 GstVulkanInstance ** instance);
GST_VULKAN_API
gboolean                gst_vulkan_handle_context_query         (GstElement * element,
                                                                 GstQuery * query,
                                                                 GstVulkanDisplay * display,
                                                                 GstVulkanInstance * instance,
                                                                 GstVulkanDevice * device);

GST_VULKAN_API
void                    gst_vulkan_global_context_query         (GstElement * element,
                                                                 const gchar * context_type);
GST_VULKAN_API
GstQuery *              gst_vulkan_local_context_query          (GstElement * element,
                                                                 const gchar * context_type);
GST_VULKAN_API
gboolean                gst_vulkan_run_query                    (GstElement * element,
                                                                 GstQuery * query,
                                                                 GstPadDirection direction);

GST_VULKAN_API
GstVulkanImageView *    gst_vulkan_get_or_create_image_view     (GstVulkanImageMemory * image);

GST_VULKAN_API
GstVulkanHandle *       gst_vulkan_create_shader                (GstVulkanDevice * device,
                                                                 gchar * code,
                                                                 gsize size,
                                                                 GError ** error);

G_END_DECLS

#endif /*_VK_UTILS_H_ */