mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
a61fe61318
I want to reuse it for crossfades (see next commit).
27 lines
1.8 KiB
C
27 lines
1.8 KiB
C
#pragma once
|
|
|
|
#include "gskvulkanopprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void gsk_vulkan_color_matrix_op (GskVulkanRenderPass *render_pass,
|
|
const char *clip_type,
|
|
GskVulkanImage *image,
|
|
const graphene_rect_t *rect,
|
|
const graphene_point_t *offset,
|
|
const graphene_rect_t *tex_rect,
|
|
const graphene_matrix_t *color_matrix,
|
|
const graphene_vec4_t *color_offset);
|
|
|
|
void gsk_vulkan_color_matrix_op_opacity (GskVulkanRenderPass *render_pass,
|
|
const char *clip_type,
|
|
GskVulkanImage *image,
|
|
const graphene_rect_t *rect,
|
|
const graphene_point_t *offset,
|
|
const graphene_rect_t *tex_rect,
|
|
float opacity);
|
|
|
|
|
|
G_END_DECLS
|
|
|