mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
24 lines
1.3 KiB
C
24 lines
1.3 KiB
C
#pragma once
|
|
|
|
#include "gskgpushaderopprivate.h"
|
|
|
|
#include <graphene.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void gsk_gpu_cross_fade_op (GskGpuFrame *frame,
|
|
GskGpuShaderClip clip,
|
|
GskGpuDescriptors *desc,
|
|
const graphene_rect_t *rect,
|
|
const graphene_point_t *offset,
|
|
float opacity,
|
|
float progress,
|
|
guint32 start_descriptor,
|
|
const graphene_rect_t *start_rect,
|
|
guint32 end_descriptor,
|
|
const graphene_rect_t *end_rect);
|
|
|
|
|
|
G_END_DECLS
|
|
|