diff options
author | Benjamin Otte <otte@redhat.com> | 2017-01-17 02:20:08 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-01-17 06:17:55 +0100 |
commit | c7d899c535afce21e0d2ffea94520a2625e4da80 (patch) | |
tree | 0779be425b0364ae5b8564be8906563497a85d2b /gsk/resources/vulkan | |
parent | 8ffecabd9382381769758add0ddc15ca090cc310 (diff) | |
download | gtk+-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')
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 Binary files differindex 0c27a6b096..2a2d7ce9a4 100644 --- a/gsk/resources/vulkan/blend-clip-rounded.vert.spv +++ b/gsk/resources/vulkan/blend-clip-rounded.vert.spv 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 Binary files differindex a12f3c8d9e..494f916537 100644 --- a/gsk/resources/vulkan/blend-clip.vert.spv +++ b/gsk/resources/vulkan/blend-clip.vert.spv 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 Binary files differindex dafd915f8c..962a1b4e18 100644 --- a/gsk/resources/vulkan/blend.vert.spv +++ b/gsk/resources/vulkan/blend.vert.spv 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 Binary files differindex 5aae91ae71..5271686167 100644 --- a/gsk/resources/vulkan/border-clip-rounded.vert.spv +++ b/gsk/resources/vulkan/border-clip-rounded.vert.spv 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 Binary files differindex 5a505d8ebc..ce5e85e3dc 100644 --- a/gsk/resources/vulkan/border-clip.vert.spv +++ b/gsk/resources/vulkan/border-clip.vert.spv 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 Binary files differindex 384eebeae8..6a6cf93865 100644 --- a/gsk/resources/vulkan/border.vert.spv +++ b/gsk/resources/vulkan/border.vert.spv 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 Binary files differindex 4414e997dd..b283554467 100644 --- a/gsk/resources/vulkan/color-clip-rounded.vert.spv +++ b/gsk/resources/vulkan/color-clip-rounded.vert.spv 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 Binary files differindex 0089004dcf..c07e45f6e3 100644 --- a/gsk/resources/vulkan/color-clip.vert.spv +++ b/gsk/resources/vulkan/color-clip.vert.spv 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 Binary files differindex 49271e4572..d4db4839d1 100644 --- a/gsk/resources/vulkan/color-matrix-clip-rounded.vert.spv +++ b/gsk/resources/vulkan/color-matrix-clip-rounded.vert.spv 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 Binary files differindex 6648e245ba..84c384622e 100644 --- a/gsk/resources/vulkan/color-matrix-clip.vert.spv +++ b/gsk/resources/vulkan/color-matrix-clip.vert.spv 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 Binary files differindex 2985b7409d..fa89276b21 100644 --- a/gsk/resources/vulkan/color-matrix.vert.spv +++ b/gsk/resources/vulkan/color-matrix.vert.spv 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 Binary files differindex 0d571efc35..05d74a6b0b 100644 --- a/gsk/resources/vulkan/color.vert.spv +++ b/gsk/resources/vulkan/color.vert.spv 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 Binary files differindex 901fff9ef1..800e090e91 100644 --- a/gsk/resources/vulkan/linear-clip-rounded.vert.spv +++ b/gsk/resources/vulkan/linear-clip-rounded.vert.spv 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 Binary files differindex 57199f9ec6..e7d4cf6dac 100644 --- a/gsk/resources/vulkan/linear-clip.vert.spv +++ b/gsk/resources/vulkan/linear-clip.vert.spv 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 Binary files differindex ab3b4ac9a5..f2b120f9e6 100644 --- a/gsk/resources/vulkan/linear.vert.spv +++ b/gsk/resources/vulkan/linear.vert.spv |