2016-11-21 13:18:43 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
*
|
|
|
|
* gdkvulkancontext.h: specific Vulkan wrappers
|
|
|
|
*
|
|
|
|
* Copyright © 2016 Benjamin Otte
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GDK_VULKAN_CONTEXT__
|
|
|
|
#define __GDK_VULKAN_CONTEXT__
|
|
|
|
|
2019-11-27 13:33:43 +00:00
|
|
|
#if !defined (__GDK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2016-11-21 13:18:43 +00:00
|
|
|
#error "Only <gdk/gdk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gdk/gdkversionmacros.h>
|
|
|
|
#include <gdk/gdktypes.h>
|
|
|
|
|
2016-12-09 19:22:14 +00:00
|
|
|
#ifdef GDK_RENDERING_VULKAN
|
2016-11-28 15:34:01 +00:00
|
|
|
#include <vulkan/vulkan.h>
|
|
|
|
#endif
|
|
|
|
|
2016-11-21 13:18:43 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GDK_TYPE_VULKAN_CONTEXT (gdk_vulkan_context_get_type ())
|
|
|
|
#define GDK_VULKAN_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GDK_TYPE_VULKAN_CONTEXT, GdkVulkanContext))
|
|
|
|
#define GDK_IS_VULKAN_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GDK_TYPE_VULKAN_CONTEXT))
|
|
|
|
|
|
|
|
#define GDK_VULKAN_ERROR (gdk_vulkan_error_quark ())
|
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-21 13:18:43 +00:00
|
|
|
GQuark gdk_vulkan_error_quark (void);
|
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-21 13:18:43 +00:00
|
|
|
GType gdk_vulkan_context_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2017-01-19 18:18:07 +00:00
|
|
|
#ifndef __GI_SCANNER__
|
2016-12-09 19:22:14 +00:00
|
|
|
#ifdef GDK_RENDERING_VULKAN
|
2016-11-28 15:34:01 +00:00
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-29 02:20:31 +00:00
|
|
|
const char * gdk_vulkan_strerror (VkResult result);
|
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-28 15:34:01 +00:00
|
|
|
VkInstance gdk_vulkan_context_get_instance (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-29 02:20:31 +00:00
|
|
|
VkPhysicalDevice gdk_vulkan_context_get_physical_device (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-29 02:20:31 +00:00
|
|
|
VkDevice gdk_vulkan_context_get_device (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-29 02:20:31 +00:00
|
|
|
VkQueue gdk_vulkan_context_get_queue (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-29 02:20:31 +00:00
|
|
|
uint32_t gdk_vulkan_context_get_queue_family_index (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-29 02:20:31 +00:00
|
|
|
VkFormat gdk_vulkan_context_get_image_format (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-12-01 03:07:20 +00:00
|
|
|
uint32_t gdk_vulkan_context_get_n_images (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-11-29 23:54:48 +00:00
|
|
|
VkImage gdk_vulkan_context_get_image (GdkVulkanContext *context,
|
|
|
|
guint id);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-12-01 03:07:20 +00:00
|
|
|
uint32_t gdk_vulkan_context_get_draw_index (GdkVulkanContext *context);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2016-12-01 03:07:20 +00:00
|
|
|
VkSemaphore gdk_vulkan_context_get_draw_semaphore (GdkVulkanContext *context);
|
2016-11-28 15:34:01 +00:00
|
|
|
|
2016-12-09 19:22:14 +00:00
|
|
|
#endif /* GDK_RENDERING_VULKAN */
|
2017-01-19 18:18:07 +00:00
|
|
|
#endif /* __GI_SCANNER__ */
|
2016-11-28 15:34:01 +00:00
|
|
|
|
2022-09-23 23:08:25 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GdkVulkanContext, g_object_unref)
|
|
|
|
|
2016-11-21 13:18:43 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GDK_VULKAN_CONTEXT__ */
|