aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/outlinedtext.vert
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/shaders/outlinedtext.vert')
-rw-r--r--src/quick/scenegraph/shaders/outlinedtext.vert22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/quick/scenegraph/shaders/outlinedtext.vert b/src/quick/scenegraph/shaders/outlinedtext.vert
deleted file mode 100644
index ced8afd034..0000000000
--- a/src/quick/scenegraph/shaders/outlinedtext.vert
+++ /dev/null
@@ -1,22 +0,0 @@
-uniform highp mat4 matrix;
-uniform highp vec2 textureScale;
-uniform highp vec2 shift;
-
-attribute highp vec4 vCoord;
-attribute highp vec2 tCoord;
-
-varying highp vec2 sampleCoord;
-varying highp vec2 sCoordUp;
-varying highp vec2 sCoordDown;
-varying highp vec2 sCoordLeft;
-varying highp vec2 sCoordRight;
-
-void main()
-{
- sampleCoord = tCoord * textureScale;
- sCoordUp = (tCoord - vec2(0.0, -1.0)) * textureScale;
- sCoordDown = (tCoord - vec2(0.0, 1.0)) * textureScale;
- sCoordLeft = (tCoord - vec2(-1.0, 0.0)) * textureScale;
- sCoordRight = (tCoord - vec2(1.0, 0.0)) * textureScale;
- gl_Position = matrix * vCoord;
-} \ No newline at end of file