aboutsummaryrefslogtreecommitdiff
path: root/shaders/dummy.vsh
diff options
context:
space:
mode:
authorjvech <jmvalenciae@unal.edu.co>2022-10-30 19:44:00 -0500
committerjvech <jmvalenciae@unal.edu.co>2022-10-30 19:44:00 -0500
commit30f2fb748307ea32000089cecaff4d0c4e3d5d73 (patch)
tree5bfdee9a5e276efea7035a1ec2af72dedf3635e4 /shaders/dummy.vsh
parentcd327bdfe911c1bf10266469dfaa85bd35420aea (diff)
feat: mtl file reading added
Bugs to Fix: - Reading from standard input cause segmentation error - If the subsequent line to the last f component is a blank line mverse will throw an error - mtl path finding needs to be improved - shaders must be improved
Diffstat (limited to 'shaders/dummy.vsh')
-rw-r--r--shaders/dummy.vsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/shaders/dummy.vsh b/shaders/dummy.vsh
index ab57a50..bd540ab 100644
--- a/shaders/dummy.vsh
+++ b/shaders/dummy.vsh
@@ -14,7 +14,7 @@ out vec2 TexCoords;
void main()
{
gl_Position = proj * view * model * vec4(aPos, 1.0f);
- //FragPos = vec3(model * vec4(aPos, 1.0));
+ FragPos = vec3(model * vec4(aPos, 1.0));
//Normal = vec3(rotNormals * vec4(aNormal, 1.0));
//TexCoords = aTexCoords;
}
Feel free to download, copy and edit any repo