2023-03-31 19:11:10 +00:00
|
|
|
#pragma once
|
2017-09-22 18:20:57 +00:00
|
|
|
|
|
|
|
#include <graphene.h>
|
|
|
|
|
|
|
|
#include "gskvulkanpipelineprivate.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GskVulkanCrossFadePipelineLayout GskVulkanCrossFadePipelineLayout;
|
|
|
|
|
|
|
|
#define GSK_TYPE_VULKAN_CROSS_FADE_PIPELINE (gsk_vulkan_cross_fade_pipeline_get_type ())
|
|
|
|
|
|
|
|
G_DECLARE_FINAL_TYPE (GskVulkanCrossFadePipeline, gsk_vulkan_cross_fade_pipeline, GSK, VULKAN_CROSS_FADE_PIPELINE, GskVulkanPipeline)
|
|
|
|
|
|
|
|
GskVulkanPipeline * gsk_vulkan_cross_fade_pipeline_new (GdkVulkanContext *context,
|
|
|
|
VkPipelineLayout layout,
|
|
|
|
const char *shader_name,
|
|
|
|
VkRenderPass render_pass);
|
|
|
|
|
|
|
|
void gsk_vulkan_cross_fade_pipeline_collect_vertex_data (GskVulkanCrossFadePipeline *pipeline,
|
|
|
|
guchar *data,
|
2023-05-23 03:08:13 +00:00
|
|
|
guint32 start_tex_id[2],
|
|
|
|
guint32 end_tex_id[2],
|
2023-05-10 14:40:22 +00:00
|
|
|
const graphene_point_t *offset,
|
2017-09-22 18:20:57 +00:00
|
|
|
const graphene_rect_t *bounds,
|
|
|
|
const graphene_rect_t *start_bounds,
|
|
|
|
const graphene_rect_t *end_bounds,
|
2023-05-20 23:28:36 +00:00
|
|
|
const graphene_rect_t *start_tex_rect,
|
|
|
|
const graphene_rect_t *end_tex_rect,
|
2017-09-22 18:20:57 +00:00
|
|
|
double progress);
|
|
|
|
gsize gsk_vulkan_cross_fade_pipeline_draw (GskVulkanCrossFadePipeline *pipeline,
|
|
|
|
VkCommandBuffer command_buffer,
|
|
|
|
gsize offset,
|
|
|
|
gsize n_commands);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|