mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-07 11:20:09 +00:00
210cb3eecd
This removes the last remaining original op from the gskvulkanrenderpass.c, so that file got some cleanup, too.
19 lines
742 B
C
19 lines
742 B
C
#pragma once
|
|
|
|
#include "gskvulkanopprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
const VkPushConstantRange *
|
|
gsk_vulkan_push_constants_get_ranges (void) G_GNUC_PURE;
|
|
uint32_t gsk_vulkan_push_constants_get_range_count (void) G_GNUC_PURE;
|
|
|
|
void gsk_vulkan_push_constants_op (GskVulkanRenderPass *render_pass,
|
|
const graphene_vec2_t *scale,
|
|
const graphene_matrix_t *mvp,
|
|
const GskRoundedRect *clip);
|
|
|
|
|
|
G_END_DECLS
|
|
|