Initial setup.
Correctly linking glfw and spdlog... Linking could be improved by not needing the sandbox application to also be linked with glfw
This commit is contained in:
		
							
								
								
									
										0
									
								
								MyGraphicsEngine/shaders/fragment.shader
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								MyGraphicsEngine/shaders/fragment.shader
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										7
									
								
								MyGraphicsEngine/shaders/vertex.shader
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								MyGraphicsEngine/shaders/vertex.shader
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,7 @@
 | 
			
		||||
#version 330 core
 | 
			
		||||
layout (location = 0) in vec3 aPos;
 | 
			
		||||
 | 
			
		||||
void main()
 | 
			
		||||
{
 | 
			
		||||
    gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user