mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 22:20:24 +00:00
a1c5a806b3
The conversion was done by guard2one.
22 lines
966 B
C
22 lines
966 B
C
#pragma once
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _GskVulkanMemory GskVulkanMemory;
|
|
|
|
GskVulkanMemory * gsk_vulkan_memory_new (GdkVulkanContext *context,
|
|
uint32_t allowed_types,
|
|
VkMemoryPropertyFlags properties,
|
|
gsize size);
|
|
void gsk_vulkan_memory_free (GskVulkanMemory *memory);
|
|
|
|
VkDeviceMemory gsk_vulkan_memory_get_device_memory (GskVulkanMemory *self);
|
|
|
|
guchar * gsk_vulkan_memory_map (GskVulkanMemory *self);
|
|
void gsk_vulkan_memory_unmap (GskVulkanMemory *self);
|
|
|
|
G_END_DECLS
|
|
|