summaryrefslogtreecommitdiff
path: root/chart2/opengl/symbolVertexShader.glsl
diff options
context:
space:
mode:
authorZolnai Tamás <tamas.zolnai@collabora.com>2014-03-13 14:22:59 +0100
committerZolnai Tamás <tamas.zolnai@collabora.com>2014-03-14 19:59:21 +0100
commit04b70c682e2cdc52b144961a83d05fd203de6884 (patch)
tree7a88b6307b0d229575accdedebb5ee6a6e002ff0 /chart2/opengl/symbolVertexShader.glsl
parent84f4de3b65cd0f861e80c69b773004f28f9f8d9f (diff)
Move OpenGLRender to vcl
Change-Id: I6383ae3f94fc18aec92596b9d857d3fde5869dd6
Diffstat (limited to 'chart2/opengl/symbolVertexShader.glsl')
-rw-r--r--chart2/opengl/symbolVertexShader.glsl23
1 files changed, 0 insertions, 23 deletions
diff --git a/chart2/opengl/symbolVertexShader.glsl b/chart2/opengl/symbolVertexShader.glsl
deleted file mode 100644
index 3cf9f41ef21b..000000000000
--- a/chart2/opengl/symbolVertexShader.glsl
+++ /dev/null
@@ -1,23 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-#version 120
-
-attribute vec3 vPosition;
-uniform mat4 MVP;
-uniform vec4 vColor;
-varying vec4 fragmentColor;
-
-void main()
-{
- gl_Position = MVP * vec4(vPosition, 1);
- fragmentColor = vColor;
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */