1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-21 20:05:45 +02:00

[no sq] Move shaders & remove dead Irrlicht tests (#15006)

* Move irrlicht shaders to correct place

* Remove unused Irrlicht tests
This commit is contained in:
sfan5
2024-08-19 09:17:52 +02:00
committed by GitHub
parent 48845de46e
commit b010714426
44 changed files with 0 additions and 1274 deletions

View File

@@ -0,0 +1,24 @@
#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;
}