source: network-game/graphics_library/SimpleVertexShader.vertexshader@ aee0634

Last change on this file since aee0634 was 2ce5154, checked in by dportnoy <dmp1488@…>, 11 years ago

new OpenGL program added, that might replace the client's 2D graphics someday

  • Property mode set to 100644
File size: 163 bytes
RevLine 
[2ce5154]1#version 330 core
2
3layout(location = 0) in vec3 vertexPosition_modelspace;
4
5void main() {
6 gl_Position.xyz = vertexPosition_modelspace;
7 gl_Position.w = 1.0;
8}
Note: See TracBrowser for help on using the repository browser.