2023-10-08 04:47:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "gskgputypesprivate.h"
|
|
|
|
#include "gsktypes.h"
|
2024-08-04 11:11:03 +00:00
|
|
|
#include "gdkcolorprivate.h"
|
2023-10-08 04:47:19 +00:00
|
|
|
|
|
|
|
#include <graphene.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
void gsk_gpu_box_shadow_op (GskGpuFrame *frame,
|
|
|
|
GskGpuShaderClip clip,
|
2024-08-04 11:11:03 +00:00
|
|
|
GdkColorState *ccs,
|
|
|
|
float opacity,
|
|
|
|
const graphene_point_t *offset,
|
2023-10-08 04:47:19 +00:00
|
|
|
gboolean inset,
|
|
|
|
const graphene_rect_t *bounds,
|
|
|
|
const GskRoundedRect *outline,
|
|
|
|
const graphene_point_t *shadow_offset,
|
|
|
|
float spread,
|
|
|
|
float blur_radius,
|
2024-08-04 11:11:03 +00:00
|
|
|
const GdkColor *color);
|
2023-10-08 04:47:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|