summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc')
-rw-r--r--3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc8
1 files changed, 4 insertions, 4 deletions
diff --git a/3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc b/3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc
index 9607a45509e..9e027b8bdee 100644
--- a/3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc
+++ b/3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc
@@ -2,8 +2,8 @@ $input a_position, a_color0, a_texcoord0
$output v_color0, v_stipple
/*
- * Copyright 2011-2016 Branimir Karadzic. All rights reserved.
- * License: http://www.opensource.org/licenses/BSD-2-Clause
+ * Copyright 2011-2017 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include <bgfx_shader.sh>
@@ -11,6 +11,6 @@ $output v_color0, v_stipple
void main()
{
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
- v_color0 = a_color0;
- v_stipple = a_texcoord0;
+ v_color0 = a_color0;
+ v_stipple = a_texcoord0.x;
}