mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-05 18:31:09 +00:00
2aba50efa0
This is a massive refactoring because it collects all the renderops of all renderpasses into one long array in the Render object. Lots of code in there is still flaky and needs cleanup. That will follow in further commits. Other than that it does work fine though.
122 lines
3.6 KiB
C
122 lines
3.6 KiB
C
#include "config.h"
|
|
|
|
#include "gskvulkanborderopprivate.h"
|
|
|
|
#include "gskvulkanprivate.h"
|
|
#include "gsk/gskroundedrectprivate.h"
|
|
|
|
#include "vulkan/resources/border.vert.h"
|
|
|
|
typedef struct _GskVulkanBorderOp GskVulkanBorderOp;
|
|
|
|
struct _GskVulkanBorderOp
|
|
{
|
|
GskVulkanOp op;
|
|
|
|
GskRoundedRect outline;
|
|
float widths[4];
|
|
GdkRGBA colors[4];
|
|
};
|
|
|
|
static void
|
|
gsk_vulkan_border_op_finish (GskVulkanOp *op)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gsk_vulkan_border_op_print (GskVulkanOp *op,
|
|
GString *string,
|
|
guint indent)
|
|
{
|
|
GskVulkanBorderOp *self = (GskVulkanBorderOp *) op;
|
|
|
|
print_indent (string, indent);
|
|
print_rounded_rect (string, &self->outline);
|
|
g_string_append (string, "border ");
|
|
print_rgba (string, &self->colors[0]);
|
|
if (!gdk_rgba_equal (&self->colors[3], &self->colors[0]) ||
|
|
!gdk_rgba_equal (&self->colors[2], &self->colors[0]) ||
|
|
!gdk_rgba_equal (&self->colors[1], &self->colors[0]))
|
|
{
|
|
print_rgba (string, &self->colors[1]);
|
|
print_rgba (string, &self->colors[2]);
|
|
print_rgba (string, &self->colors[3]);
|
|
}
|
|
g_string_append_printf (string, "%g ", self->widths[0]);
|
|
if (self->widths[0] != self->widths[1] ||
|
|
self->widths[0] != self->widths[2] ||
|
|
self->widths[0] != self->widths[3])
|
|
g_string_append_printf (string, "%g %g %g ", self->widths[1], self->widths[2], self->widths[3]);
|
|
|
|
print_newline (string);
|
|
}
|
|
|
|
static void
|
|
gsk_vulkan_border_op_collect_vertex_data (GskVulkanOp *op,
|
|
guchar *data)
|
|
{
|
|
GskVulkanBorderOp *self = (GskVulkanBorderOp *) op;
|
|
GskVulkanBorderInstance *instance = (GskVulkanBorderInstance *) (data + op->vertex_offset);
|
|
guint i;
|
|
|
|
gsk_rounded_rect_to_float (&self->outline, graphene_point_zero (), instance->rect);
|
|
for (i = 0; i < 4; i++)
|
|
{
|
|
instance->border_widths[i] = self->widths[i];
|
|
gsk_vulkan_rgba_to_float (&self->colors[i], (gpointer) &instance->border_colors[4 * i]);
|
|
}
|
|
}
|
|
|
|
static void
|
|
gsk_vulkan_border_op_reserve_descriptor_sets (GskVulkanOp *op,
|
|
GskVulkanRender *render)
|
|
{
|
|
}
|
|
|
|
static GskVulkanOp *
|
|
gsk_vulkan_border_op_command (GskVulkanOp *op,
|
|
GskVulkanRender *render,
|
|
VkPipelineLayout pipeline_layout,
|
|
VkCommandBuffer command_buffer)
|
|
{
|
|
return gsk_vulkan_op_draw_command_n (op, render, pipeline_layout, command_buffer, 8);
|
|
}
|
|
|
|
static const GskVulkanOpClass GSK_VULKAN_BORDER_OP_CLASS = {
|
|
GSK_VULKAN_OP_SIZE (GskVulkanBorderOp),
|
|
GSK_VULKAN_STAGE_COMMAND,
|
|
"border",
|
|
&gsk_vulkan_border_info,
|
|
gsk_vulkan_border_op_finish,
|
|
gsk_vulkan_border_op_print,
|
|
gsk_vulkan_op_draw_upload,
|
|
gsk_vulkan_op_draw_count_vertex_data,
|
|
gsk_vulkan_border_op_collect_vertex_data,
|
|
gsk_vulkan_border_op_reserve_descriptor_sets,
|
|
gsk_vulkan_border_op_command
|
|
};
|
|
|
|
void
|
|
gsk_vulkan_border_op (GskVulkanRender *render,
|
|
const char *clip_type,
|
|
const GskRoundedRect *outline,
|
|
const graphene_point_t *offset,
|
|
const float widths[4],
|
|
const GdkRGBA colors[4])
|
|
{
|
|
GskVulkanBorderOp *self;
|
|
guint i;
|
|
|
|
self = (GskVulkanBorderOp *) gsk_vulkan_op_alloc (render, &GSK_VULKAN_BORDER_OP_CLASS);
|
|
|
|
((GskVulkanOp *) self)->clip_type = g_intern_string (clip_type);
|
|
self->outline = *outline;
|
|
gsk_rounded_rect_offset (&self->outline, offset->x, offset->y);
|
|
for (i = 0; i < 4; i++)
|
|
{
|
|
self->widths[i] = widths[i];
|
|
self->colors[i] = colors[i];
|
|
}
|
|
}
|
|
|