2023-03-31 19:11:10 +00:00
|
|
|
#pragma once
|
2016-12-26 16:11:13 +00:00
|
|
|
|
|
|
|
#include <graphene.h>
|
|
|
|
|
|
|
|
#include "gskvulkanpipelineprivate.h"
|
|
|
|
#include "gskrendernode.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GSK_VULKAN_LINEAR_GRADIENT_PIPELINE_MAX_COLOR_STOPS 8
|
|
|
|
|
|
|
|
typedef struct _GskVulkanLinearGradientPipelineLayout GskVulkanLinearGradientPipelineLayout;
|
|
|
|
|
|
|
|
#define GSK_TYPE_VULKAN_LINEAR_GRADIENT_PIPELINE (gsk_vulkan_linear_gradient_pipeline_get_type ())
|
|
|
|
|
|
|
|
G_DECLARE_FINAL_TYPE (GskVulkanLinearGradientPipeline, gsk_vulkan_linear_gradient_pipeline, GSK, VULKAN_LINEAR_GRADIENT_PIPELINE, GskVulkanPipeline)
|
|
|
|
|
2017-09-22 17:30:26 +00:00
|
|
|
GskVulkanPipeline * gsk_vulkan_linear_gradient_pipeline_new (GdkVulkanContext *context,
|
|
|
|
VkPipelineLayout layout,
|
2016-12-26 16:11:13 +00:00
|
|
|
const char *shader_name,
|
|
|
|
VkRenderPass render_pass);
|
|
|
|
|
|
|
|
void gsk_vulkan_linear_gradient_pipeline_collect_vertex_data
|
|
|
|
(GskVulkanLinearGradientPipeline*pipeline,
|
|
|
|
guchar *data,
|
2023-05-10 14:40:22 +00:00
|
|
|
const graphene_point_t *offset,
|
2016-12-26 16:11:13 +00:00
|
|
|
const graphene_rect_t *rect,
|
|
|
|
const graphene_point_t *start,
|
|
|
|
const graphene_point_t *end,
|
|
|
|
gboolean repeating,
|
2023-06-08 10:03:48 +00:00
|
|
|
gsize gradient_offset,
|
|
|
|
gsize n_stops);
|
2016-12-26 16:11:13 +00:00
|
|
|
gsize gsk_vulkan_linear_gradient_pipeline_draw (GskVulkanLinearGradientPipeline*pipeline,
|
|
|
|
VkCommandBuffer command_buffer,
|
|
|
|
gsize offset,
|
|
|
|
gsize n_commands);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|