summaryrefslogtreecommitdiff
path: root/gsk/resources/vulkan
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2017-01-17 02:20:08 +0100
committerBenjamin Otte <otte@redhat.com>2017-01-17 06:17:55 +0100
commitc7d899c535afce21e0d2ffea94520a2625e4da80 (patch)
tree0779be425b0364ae5b8564be8906563497a85d2b /gsk/resources/vulkan
parent8ffecabd9382381769758add0ddc15ca090cc310 (diff)
downloadgtk+-c7d899c535afce21e0d2ffea94520a2625e4da80.tar.gz
vulkan: Move push constants into their own header
This is the first step towards easing maintenance of the Vulkan shaders by moving common code into headers.
Diffstat (limited to 'gsk/resources/vulkan')
-rw-r--r--gsk/resources/vulkan/blend-clip-rounded.vert.glsl9
-rw-r--r--gsk/resources/vulkan/blend-clip-rounded.vert.spvbin4940 -> 4940 bytes
-rw-r--r--gsk/resources/vulkan/blend-clip.vert.glsl9
-rw-r--r--gsk/resources/vulkan/blend-clip.vert.spvbin4604 -> 4604 bytes
-rw-r--r--gsk/resources/vulkan/blend.vert.glsl9
-rw-r--r--gsk/resources/vulkan/blend.vert.spvbin1964 -> 1964 bytes
-rw-r--r--gsk/resources/vulkan/border-clip-rounded.vert.glsl9
-rw-r--r--gsk/resources/vulkan/border-clip-rounded.vert.spvbin9312 -> 9312 bytes
-rw-r--r--gsk/resources/vulkan/border-clip.vert.glsl9
-rw-r--r--gsk/resources/vulkan/border-clip.vert.spvbin8952 -> 8952 bytes
-rw-r--r--gsk/resources/vulkan/border.vert.glsl9
-rw-r--r--gsk/resources/vulkan/border.vert.spvbin7216 -> 7216 bytes
-rw-r--r--gsk/resources/vulkan/color-clip-rounded.vert.glsl9
-rw-r--r--gsk/resources/vulkan/color-clip-rounded.vert.spvbin2176 -> 2176 bytes
-rw-r--r--gsk/resources/vulkan/color-clip.vert.glsl9
-rw-r--r--gsk/resources/vulkan/color-clip.vert.spvbin3588 -> 3588 bytes
-rw-r--r--gsk/resources/vulkan/color-matrix-clip-rounded.vert.glsl9
-rw-r--r--gsk/resources/vulkan/color-matrix-clip-rounded.vert.spvbin5292 -> 5292 bytes
-rw-r--r--gsk/resources/vulkan/color-matrix-clip.vert.glsl9
-rw-r--r--gsk/resources/vulkan/color-matrix-clip.vert.spvbin4956 -> 4956 bytes
-rw-r--r--gsk/resources/vulkan/color-matrix.vert.glsl9
-rw-r--r--gsk/resources/vulkan/color-matrix.vert.spvbin2316 -> 2316 bytes
-rw-r--r--gsk/resources/vulkan/color.vert.glsl9
-rw-r--r--gsk/resources/vulkan/color.vert.spvbin1780 -> 1780 bytes
-rw-r--r--gsk/resources/vulkan/constants.glsl11
-rw-r--r--gsk/resources/vulkan/linear-clip-rounded.vert.glsl9
-rw-r--r--gsk/resources/vulkan/linear-clip-rounded.vert.spvbin6208 -> 6208 bytes
-rw-r--r--gsk/resources/vulkan/linear-clip.vert.glsl9
-rw-r--r--gsk/resources/vulkan/linear-clip.vert.spvbin5856 -> 5856 bytes
-rw-r--r--gsk/resources/vulkan/linear.vert.glsl9
-rw-r--r--gsk/resources/vulkan/linear.vert.spvbin7648 -> 7648 bytes
31 files changed, 41 insertions, 105 deletions
diff --git a/gsk/resources/vulkan/blend-clip-rounded.vert.glsl b/gsk/resources/vulkan/blend-clip-rounded.vert.glsl
index c680c65455..221cbbeeba 100644
--- a/gsk/resources/vulkan/blend-clip-rounded.vert.glsl
+++ b/gsk/resources/vulkan/blend-clip-rounded.vert.glsl
@@ -1,15 +1,10 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inTexRect;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outPos;
layout(location = 1) out vec2 outTexCoord;
layout(location = 2) out flat vec4 outClipBounds;
diff --git a/gsk/resources/vulkan/blend-clip-rounded.vert.spv b/gsk/resources/vulkan/blend-clip-rounded.vert.spv
index 0c27a6b096..2a2d7ce9a4 100644
--- a/gsk/resources/vulkan/blend-clip-rounded.vert.spv
+++ b/gsk/resources/vulkan/blend-clip-rounded.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/blend-clip.vert.glsl b/gsk/resources/vulkan/blend-clip.vert.glsl
index 0d66a2dcd7..b1c622bea2 100644
--- a/gsk/resources/vulkan/blend-clip.vert.glsl
+++ b/gsk/resources/vulkan/blend-clip.vert.glsl
@@ -1,15 +1,10 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inTexRect;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outTexCoord;
out gl_PerVertex {
diff --git a/gsk/resources/vulkan/blend-clip.vert.spv b/gsk/resources/vulkan/blend-clip.vert.spv
index a12f3c8d9e..494f916537 100644
--- a/gsk/resources/vulkan/blend-clip.vert.spv
+++ b/gsk/resources/vulkan/blend-clip.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/blend.vert.glsl b/gsk/resources/vulkan/blend.vert.glsl
index 30c1474f9c..17be873457 100644
--- a/gsk/resources/vulkan/blend.vert.glsl
+++ b/gsk/resources/vulkan/blend.vert.glsl
@@ -1,15 +1,10 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inTexRect;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outTexCoord;
out gl_PerVertex {
diff --git a/gsk/resources/vulkan/blend.vert.spv b/gsk/resources/vulkan/blend.vert.spv
index dafd915f8c..962a1b4e18 100644
--- a/gsk/resources/vulkan/blend.vert.spv
+++ b/gsk/resources/vulkan/blend.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/border-clip-rounded.vert.glsl b/gsk/resources/vulkan/border-clip-rounded.vert.glsl
index 8939a95d9b..a66d7f78dc 100644
--- a/gsk/resources/vulkan/border-clip-rounded.vert.glsl
+++ b/gsk/resources/vulkan/border-clip-rounded.vert.glsl
@@ -1,18 +1,13 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inCornerWidths;
layout(location = 2) in vec4 inCornerHeights;
layout(location = 3) in vec4 inBorderWidths;
layout(location = 4) in mat4 inBorderColors;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outPos;
layout(location = 1) out flat vec4 outColor;
layout(location = 2) out flat vec4 outRect;
diff --git a/gsk/resources/vulkan/border-clip-rounded.vert.spv b/gsk/resources/vulkan/border-clip-rounded.vert.spv
index 5aae91ae71..5271686167 100644
--- a/gsk/resources/vulkan/border-clip-rounded.vert.spv
+++ b/gsk/resources/vulkan/border-clip-rounded.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/border-clip.vert.glsl b/gsk/resources/vulkan/border-clip.vert.glsl
index 5de7a12f70..8db91a58a4 100644
--- a/gsk/resources/vulkan/border-clip.vert.glsl
+++ b/gsk/resources/vulkan/border-clip.vert.glsl
@@ -1,18 +1,13 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inCornerWidths;
layout(location = 2) in vec4 inCornerHeights;
layout(location = 3) in vec4 inBorderWidths;
layout(location = 4) in mat4 inBorderColors;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outPos;
layout(location = 1) out flat vec4 outColor;
layout(location = 2) out flat vec4 outRect;
diff --git a/gsk/resources/vulkan/border-clip.vert.spv b/gsk/resources/vulkan/border-clip.vert.spv
index 5a505d8ebc..ce5e85e3dc 100644
--- a/gsk/resources/vulkan/border-clip.vert.spv
+++ b/gsk/resources/vulkan/border-clip.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/border.vert.glsl b/gsk/resources/vulkan/border.vert.glsl
index 48efbc7e40..744f5000ef 100644
--- a/gsk/resources/vulkan/border.vert.glsl
+++ b/gsk/resources/vulkan/border.vert.glsl
@@ -1,18 +1,13 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inCornerWidths;
layout(location = 2) in vec4 inCornerHeights;
layout(location = 3) in vec4 inBorderWidths;
layout(location = 4) in mat4 inBorderColors;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outPos;
layout(location = 1) out flat vec4 outColor;
layout(location = 2) out flat vec4 outRect;
diff --git a/gsk/resources/vulkan/border.vert.spv b/gsk/resources/vulkan/border.vert.spv
index 384eebeae8..6a6cf93865 100644
--- a/gsk/resources/vulkan/border.vert.spv
+++ b/gsk/resources/vulkan/border.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/color-clip-rounded.vert.glsl b/gsk/resources/vulkan/color-clip-rounded.vert.glsl
index a3c55351a2..2303d90e70 100644
--- a/gsk/resources/vulkan/color-clip-rounded.vert.glsl
+++ b/gsk/resources/vulkan/color-clip-rounded.vert.glsl
@@ -1,15 +1,10 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inColor;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outPos;
layout(location = 1) out flat vec4 outColor;
layout(location = 2) out flat vec4 outClipBounds;
diff --git a/gsk/resources/vulkan/color-clip-rounded.vert.spv b/gsk/resources/vulkan/color-clip-rounded.vert.spv
index 4414e997dd..b283554467 100644
--- a/gsk/resources/vulkan/color-clip-rounded.vert.spv
+++ b/gsk/resources/vulkan/color-clip-rounded.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/color-clip.vert.glsl b/gsk/resources/vulkan/color-clip.vert.glsl
index b89321759f..724cee1cdd 100644
--- a/gsk/resources/vulkan/color-clip.vert.glsl
+++ b/gsk/resources/vulkan/color-clip.vert.glsl
@@ -1,15 +1,10 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inColor;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
out gl_PerVertex {
vec4 gl_Position;
};
diff --git a/gsk/resources/vulkan/color-clip.vert.spv b/gsk/resources/vulkan/color-clip.vert.spv
index 0089004dcf..c07e45f6e3 100644
--- a/gsk/resources/vulkan/color-clip.vert.spv
+++ b/gsk/resources/vulkan/color-clip.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/color-matrix-clip-rounded.vert.glsl b/gsk/resources/vulkan/color-matrix-clip-rounded.vert.glsl
index 2875e637f7..5d3e3400e6 100644
--- a/gsk/resources/vulkan/color-matrix-clip-rounded.vert.glsl
+++ b/gsk/resources/vulkan/color-matrix-clip-rounded.vert.glsl
@@ -1,17 +1,12 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inTexRect;
layout(location = 2) in mat4 inColorMatrix;
layout(location = 6) in vec4 inColorOffset;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outPos;
layout(location = 1) out vec2 outTexCoord;
layout(location = 2) out flat vec4 outClipBounds;
diff --git a/gsk/resources/vulkan/color-matrix-clip-rounded.vert.spv b/gsk/resources/vulkan/color-matrix-clip-rounded.vert.spv
index 49271e4572..d4db4839d1 100644
--- a/gsk/resources/vulkan/color-matrix-clip-rounded.vert.spv
+++ b/gsk/resources/vulkan/color-matrix-clip-rounded.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/color-matrix-clip.vert.glsl b/gsk/resources/vulkan/color-matrix-clip.vert.glsl
index 94d4ef8f90..7f9b77840a 100644
--- a/gsk/resources/vulkan/color-matrix-clip.vert.glsl
+++ b/gsk/resources/vulkan/color-matrix-clip.vert.glsl
@@ -1,17 +1,12 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inTexRect;
layout(location = 2) in mat4 inColorMatrix;
layout(location = 6) in vec4 inColorOffset;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outTexCoord;
layout(location = 1) out flat mat4 outColorMatrix;
layout(location = 5) out flat vec4 outColorOffset;
diff --git a/gsk/resources/vulkan/color-matrix-clip.vert.spv b/gsk/resources/vulkan/color-matrix-clip.vert.spv
index 6648e245ba..84c384622e 100644
--- a/gsk/resources/vulkan/color-matrix-clip.vert.spv
+++ b/gsk/resources/vulkan/color-matrix-clip.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/color-matrix.vert.glsl b/gsk/resources/vulkan/color-matrix.vert.glsl
index 20b3bbd8d0..ac1ccc0a54 100644
--- a/gsk/resources/vulkan/color-matrix.vert.glsl
+++ b/gsk/resources/vulkan/color-matrix.vert.glsl
@@ -1,17 +1,12 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inTexRect;
layout(location = 2) in mat4 inColorMatrix;
layout(location = 6) in vec4 inColorOffset;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outTexCoord;
layout(location = 1) out flat mat4 outColorMatrix;
layout(location = 5) out flat vec4 outColorOffset;
diff --git a/gsk/resources/vulkan/color-matrix.vert.spv b/gsk/resources/vulkan/color-matrix.vert.spv
index 2985b7409d..fa89276b21 100644
--- a/gsk/resources/vulkan/color-matrix.vert.spv
+++ b/gsk/resources/vulkan/color-matrix.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/color.vert.glsl b/gsk/resources/vulkan/color.vert.glsl
index 873ccfc949..ab71cdacb6 100644
--- a/gsk/resources/vulkan/color.vert.glsl
+++ b/gsk/resources/vulkan/color.vert.glsl
@@ -1,15 +1,10 @@
#version 420 core
+#include "constants.glsl"
+
layout(location = 0) in vec4 inRect;
layout(location = 1) in vec4 inColor;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec4 outColor;
out gl_PerVertex {
diff --git a/gsk/resources/vulkan/color.vert.spv b/gsk/resources/vulkan/color.vert.spv
index 0d571efc35..05d74a6b0b 100644
--- a/gsk/resources/vulkan/color.vert.spv
+++ b/gsk/resources/vulkan/color.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/constants.glsl b/gsk/resources/vulkan/constants.glsl
new file mode 100644
index 0000000000..427f42bc1a
--- /dev/null
+++ b/gsk/resources/vulkan/constants.glsl
@@ -0,0 +1,11 @@
+#ifndef _CONSTANTS_
+#define _CONSTANTS_
+
+layout(push_constant) uniform PushConstants {
+ mat4 mvp;
+ vec4 clip_bounds;
+ vec4 clip_widths;
+ vec4 clip_heights;
+} push;
+
+#endif
diff --git a/gsk/resources/vulkan/linear-clip-rounded.vert.glsl b/gsk/resources/vulkan/linear-clip-rounded.vert.glsl
index 3426ccef91..c06021d3cf 100644
--- a/gsk/resources/vulkan/linear-clip-rounded.vert.glsl
+++ b/gsk/resources/vulkan/linear-clip-rounded.vert.glsl
@@ -1,5 +1,7 @@
#version 420 core
+#include "constants.glsl"
+
struct ColorStop {
float offset;
vec4 color;
@@ -21,13 +23,6 @@ layout(location = 12) in vec4 inColors5;
layout(location = 13) in vec4 inColors6;
layout(location = 14) in vec4 inColors7;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out vec2 outPos;
layout(location = 1) out float outGradientPos;
layout(location = 2) out flat int outRepeating;
diff --git a/gsk/resources/vulkan/linear-clip-rounded.vert.spv b/gsk/resources/vulkan/linear-clip-rounded.vert.spv
index 901fff9ef1..800e090e91 100644
--- a/gsk/resources/vulkan/linear-clip-rounded.vert.spv
+++ b/gsk/resources/vulkan/linear-clip-rounded.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/linear-clip.vert.glsl b/gsk/resources/vulkan/linear-clip.vert.glsl
index 818d5abf4c..4ec7f2ead7 100644
--- a/gsk/resources/vulkan/linear-clip.vert.glsl
+++ b/gsk/resources/vulkan/linear-clip.vert.glsl
@@ -1,5 +1,7 @@
#version 420 core
+#include "constants.glsl"
+
struct ColorStop {
float offset;
vec4 color;
@@ -21,13 +23,6 @@ layout(location = 12) in vec4 inColors5;
layout(location = 13) in vec4 inColors6;
layout(location = 14) in vec4 inColors7;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out float outGradientPos;
layout(location = 1) out flat int outRepeating;
layout(location = 2) out flat int outStopCount;
diff --git a/gsk/resources/vulkan/linear-clip.vert.spv b/gsk/resources/vulkan/linear-clip.vert.spv
index 57199f9ec6..e7d4cf6dac 100644
--- a/gsk/resources/vulkan/linear-clip.vert.spv
+++ b/gsk/resources/vulkan/linear-clip.vert.spv
Binary files differ
diff --git a/gsk/resources/vulkan/linear.vert.glsl b/gsk/resources/vulkan/linear.vert.glsl
index d9d107e2ea..7a55c61380 100644
--- a/gsk/resources/vulkan/linear.vert.glsl
+++ b/gsk/resources/vulkan/linear.vert.glsl
@@ -1,5 +1,7 @@
#version 420 core
+#include "constants.glsl"
+
struct ColorStop {
float offset;
vec4 color;
@@ -21,13 +23,6 @@ layout(location = 12) in vec4 inColors5;
layout(location = 13) in vec4 inColors6;
layout(location = 14) in vec4 inColors7;
-layout(push_constant) uniform PushConstants {
- mat4 mvp;
- vec4 clip_bounds;
- vec4 clip_widths;
- vec4 clip_heights;
-} push;
-
layout(location = 0) out float outGradientPos;
layout(location = 1) out flat int outRepeating;
layout(location = 2) out flat int outStopCount;
diff --git a/gsk/resources/vulkan/linear.vert.spv b/gsk/resources/vulkan/linear.vert.spv
index ab3b4ac9a5..f2b120f9e6 100644
--- a/gsk/resources/vulkan/linear.vert.spv
+++ b/gsk/resources/vulkan/linear.vert.spv
Binary files differ