From da9cff10a320b2ee144cb34a281a116f1d2f49cf Mon Sep 17 00:00:00 2001 From: LaG1924 Date: Wed, 17 Nov 2021 13:11:36 +0500 Subject: Optimized entities rendering --- cwd/assets/altcraft/shaders/vert/entity.vs | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'cwd/assets/altcraft/shaders/vert/entity.vs') diff --git a/cwd/assets/altcraft/shaders/vert/entity.vs b/cwd/assets/altcraft/shaders/vert/entity.vs index baa25e5..e38c54c 100644 --- a/cwd/assets/altcraft/shaders/vert/entity.vs +++ b/cwd/assets/altcraft/shaders/vert/entity.vs @@ -1,13 +1,10 @@ #version 330 core -uniform mat4 view; -uniform mat4 projection; -uniform mat4 model; -layout (location = 0) in vec3 position; -layout (location = 1) in vec2 uvPosition; -out vec2 uvPos; +in vec3 position; -void main(){ - uvPos = uvPosition; - gl_Position = projection*view*model*vec4(position,1); -} \ No newline at end of file +uniform mat4 projView; +uniform mat4 model; + +void main() { + gl_Position = projView * model * vec4(position, 1); +} -- cgit v1.2.3