mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-12 11:50:21 +00:00
f65d4914e4
Make it handle straight alpha, too, by checking if the alt colorspace is premultiplied - which is the colorspace of the source.
85 lines
2.5 KiB
C
85 lines
2.5 KiB
C
#include "config.h"
|
|
|
|
#include "gskgpuconvertopprivate.h"
|
|
|
|
#include "gskgpuframeprivate.h"
|
|
#include "gskgpuprintprivate.h"
|
|
#include "gskrectprivate.h"
|
|
#include "gdk/gdkcolorstateprivate.h"
|
|
|
|
#include "gpu/shaders/gskgpuconvertinstance.h"
|
|
|
|
typedef struct _GskGpuConvertOp GskGpuConvertOp;
|
|
|
|
struct _GskGpuConvertOp
|
|
{
|
|
GskGpuShaderOp op;
|
|
};
|
|
|
|
#define VARIATION_OPACITY (1u << 0)
|
|
#define VARIATION_STRAIGHT_ALPHA (1u << 1)
|
|
|
|
static void
|
|
gsk_gpu_convert_op_print_instance (GskGpuShaderOp *shader,
|
|
gpointer instance_,
|
|
GString *string)
|
|
{
|
|
GskGpuConvertInstance *instance = (GskGpuConvertInstance *) instance_;
|
|
|
|
gsk_gpu_print_rect (string, instance->rect);
|
|
gsk_gpu_print_image_descriptor (string, shader->desc, instance->tex_id);
|
|
if (shader->variation & VARIATION_STRAIGHT_ALPHA)
|
|
gsk_gpu_print_string (string, "straight");
|
|
}
|
|
|
|
static const GskGpuShaderOpClass GSK_GPU_CONVERT_OP_CLASS = {
|
|
{
|
|
GSK_GPU_OP_SIZE (GskGpuConvertOp),
|
|
GSK_GPU_STAGE_SHADER,
|
|
gsk_gpu_shader_op_finish,
|
|
gsk_gpu_shader_op_print,
|
|
#ifdef GDK_RENDERING_VULKAN
|
|
gsk_gpu_shader_op_vk_command,
|
|
#endif
|
|
gsk_gpu_shader_op_gl_command
|
|
},
|
|
"gskgpuconvert",
|
|
sizeof (GskGpuConvertInstance),
|
|
#ifdef GDK_RENDERING_VULKAN
|
|
&gsk_gpu_convert_info,
|
|
#endif
|
|
gsk_gpu_convert_op_print_instance,
|
|
gsk_gpu_convert_setup_attrib_locations,
|
|
gsk_gpu_convert_setup_vao
|
|
};
|
|
|
|
void
|
|
gsk_gpu_convert_op (GskGpuFrame *frame,
|
|
GskGpuShaderClip clip,
|
|
GskGpuColorStates color_states,
|
|
float opacity,
|
|
GskGpuDescriptors *desc,
|
|
guint32 descriptor,
|
|
gboolean straight_alpha,
|
|
const graphene_rect_t *rect,
|
|
const graphene_point_t *offset,
|
|
const graphene_rect_t *tex_rect)
|
|
{
|
|
GskGpuConvertInstance *instance;
|
|
|
|
gsk_gpu_shader_op_alloc (frame,
|
|
&GSK_GPU_CONVERT_OP_CLASS,
|
|
color_states,
|
|
(opacity < 1.0 ? VARIATION_OPACITY : 0) |
|
|
(straight_alpha ? VARIATION_STRAIGHT_ALPHA : 0),
|
|
clip,
|
|
desc,
|
|
&instance);
|
|
|
|
gsk_gpu_rect_to_float (rect, offset, instance->rect);
|
|
gsk_gpu_rect_to_float (tex_rect, offset, instance->tex_rect);
|
|
instance->tex_id = descriptor;
|
|
instance->opacity = opacity;
|
|
}
|
|
|