mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-10-19 00:33:26 +02:00
fix items, map, protocls
This commit is contained in:
16
800OTClient/data/shaders/outfit_default_vertex.frag
Normal file
16
800OTClient/data/shaders/outfit_default_vertex.frag
Normal file
@@ -0,0 +1,16 @@
|
||||
attribute vec2 a_Vertex;
|
||||
attribute vec2 a_TexCoord;
|
||||
uniform mat3 u_TextureMatrix;
|
||||
varying vec2 v_TexCoord;
|
||||
varying vec2 v_TexCoord2;
|
||||
uniform mat3 u_TransformMatrix;
|
||||
uniform mat3 u_ProjectionMatrix;
|
||||
uniform vec2 u_Offset;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = vec4((u_ProjectionMatrix * u_TransformMatrix * vec3(a_Vertex.xy, 1.0)).xy, 1.0, 1.0);
|
||||
v_TexCoord = (u_TextureMatrix * vec3(a_TexCoord,1.0)).xy;
|
||||
v_TexCoord2 = (u_TextureMatrix * vec3(a_TexCoord + u_Offset,1.0)).xy;
|
||||
}
|
||||
|
Reference in New Issue
Block a user