gl renderer: Shuffle things around a bit

This commit is contained in:
Timm Bäder 2019-12-17 12:27:35 +01:00
parent cef7f7f87d
commit c79c18f39c

View File

@ -12,14 +12,6 @@ uniform mat4 u_projection;
uniform mat4 u_modelview;
uniform float u_alpha;// = 1.0;
uniform vec4 u_viewport;
struct RoundedRect
{
vec4 bounds;
vec4 corner_widths;
vec4 corner_heights;
};
uniform vec4[3] u_clip_rect;
#if GSK_GLES
@ -36,6 +28,15 @@ _OUT_ vec4 outputColor;
#endif
_IN_ vec2 vUv;
struct RoundedRect
{
vec4 bounds;
vec4 corner_widths;
vec4 corner_heights;
};
// Transform from a GskRoundedRect to a RoundedRect as we need it.
RoundedRect
create_rect(vec4 data[3])