mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-08 16:53:52 +01:00
25 lines
382 B
V Shell
25 lines
382 B
V Shell
|
#version 100
|
||
|
|
||
|
/* Attributes */
|
||
|
|
||
|
attribute vec4 inVertexPosition;
|
||
|
attribute vec4 inVertexColor;
|
||
|
attribute vec2 inTexCoord0;
|
||
|
|
||
|
/* Uniforms */
|
||
|
|
||
|
uniform float uThickness;
|
||
|
|
||
|
/* Varyings */
|
||
|
|
||
|
varying vec2 vTextureCoord;
|
||
|
varying vec4 vVertexColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = inVertexPosition;
|
||
|
gl_PointSize = uThickness;
|
||
|
vTextureCoord = inTexCoord0;
|
||
|
vVertexColor = inVertexColor.bgra;
|
||
|
}
|