From 400410fcd436d5e4310bfa779f0309c5fae5b2c2 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 16 Jan 2021 18:09:15 +0000 Subject: Initial commit Stripped back and formatted from https://github.com/BennyQBD/ModernOpenGLTutorial/ --- res/basicShader.vs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 res/basicShader.vs (limited to 'res/basicShader.vs') diff --git a/res/basicShader.vs b/res/basicShader.vs new file mode 100644 index 0000000..e673548 --- /dev/null +++ b/res/basicShader.vs @@ -0,0 +1,18 @@ +#version 120 + +attribute vec3 position; +attribute vec2 texCoord; +attribute vec3 normal; + +varying vec2 texCoord0; +varying vec3 normal0; + +uniform mat4 MVP; +uniform mat4 Normal; + +void main() +{ + gl_Position = MVP * vec4(position, 1.0); + texCoord0 = texCoord; + normal0 = (Normal * vec4(normal, 0.0)).xyz; +} -- cgit v1.2.3