mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
070ddcd14b
Pass the ccs, opacity and GdkColor and let the op decide about color conversions. Update all callers.
27 lines
1.6 KiB
C
27 lines
1.6 KiB
C
#pragma once
|
|
|
|
#include "gskgputypesprivate.h"
|
|
#include "gsktypes.h"
|
|
#include "gdkcolorprivate.h"
|
|
|
|
#include <graphene.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void gsk_gpu_box_shadow_op (GskGpuFrame *frame,
|
|
GskGpuShaderClip clip,
|
|
GdkColorState *ccs,
|
|
float opacity,
|
|
const graphene_point_t *offset,
|
|
gboolean inset,
|
|
const graphene_rect_t *bounds,
|
|
const GskRoundedRect *outline,
|
|
const graphene_point_t *shadow_offset,
|
|
float spread,
|
|
float blur_radius,
|
|
const GdkColor *color);
|
|
|
|
|
|
G_END_DECLS
|
|
|