Lecture #2 ========== We continue our discussion about OpenGL, and learn about `vertex` and `fragment` shaders. The following code shows how to draw two triangles with different colors. | **Scribe Notes by Anna Faytelson:** `Source1 <../scribe_notes/lecture2_notes_Anna_Faytelson.zip>`_ `PDF1 <../scribe_notes/lecture2_notes_Anna_Faytelson.pdf>`_ | **Scribe Notes by Abhishek Sutrave:** `Source2 <../scribe_notes/lecture2_notes_Abhishek_Sutrave.docx>`_ `PDF2 <../scribe_notes/lecture2_notes_Abhishek_Sutrave.pdf>`_ :: #include #include #include void key_callback(GLFWwindow* window,int key,int scancode,int action,int mode) { if(key==GLFW_KEY_ESCAPE && action==GLFW_PRESS) glfwSetWindowShouldClose(window,GL_TRUE); } // vertex shader const GLchar* vertex_shader_source="# version 330 core\n" "layout (location=0) in vec3 position;\n" "void main()\n" "{\n" "gl_Position = vec4(position.x,position.y,position.z,1.0);\n" "}\0"; // fragment shaders const GLchar* fragment_shader_source1="# version 330 core\n" "out vec4 color;\n" "void main()\n" "{\n" "color=vec4(1.0f,0.5f,0.2f,1.0f);\n" "}\0"; const GLchar* fragment_shader_source2="# version 330 core\n" "out vec4 color;\n" "void main()\n" "{\n" "color=vec4(1.0f,1.0f,0.0f,1.0f);\n" "}\0"; int main() { glfwInit(); #if __APPLE__ glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT,GL_TRUE); #endif glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR,3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR,3); glfwWindowHint(GLFW_OPENGL_PROFILE,GLFW_OPENGL_CORE_PROFILE); glfwWindowHint(GLFW_RESIZABLE,GL_FALSE); GLFWwindow *window=glfwCreateWindow(800,600,"Learn OpenGL",nullptr,nullptr); if(window==nullptr) { std::cout<<"Failed to create GLFW window!"< #include #include #include #include class Shader { public: // the shader program id GLuint program; Shader(const GLchar* vertex_path,const GLchar* fragment_path) { // retrieve the vertex/fragment source code std::string vertex_code,fragment_code; std::ifstream vertex_shader_file,fragment_shader_file; // ensures ifstream objects can throw exceptions vertex_shader_file.exceptions(std::ifstream::badbit); fragment_shader_file.exceptions(std::ifstream::badbit); try{ // open files vertex_shader_file.open(vertex_path); fragment_shader_file.open(fragment_path); std::stringstream vertex_shader_stream,fragment_shader_stream; // read file's buffer contents into streams vertex_shader_stream<program=glCreateProgram(); glAttachShader(this->program,vertex); glAttachShader(this->program,fragment); glLinkProgram(this->program); // print linking errors if any glGetProgramiv(this->program,GL_LINK_STATUS,&success); if(!success) { glGetProgramInfoLog(this->program,512,NULL,info_log); std::cout<<"Error::Shader::Program::Linking Failed!"<program);} }; #endif Save the above code in a file called ``Shader.h``. Now open up a new file and type in the following code below: :: #include #include #include #include "Shader.h" void key_callback(GLFWwindow* window,int key,int scancode,int action,int mode) { if(key==GLFW_KEY_ESCAPE && action==GLFW_PRESS) glfwSetWindowShouldClose(window,GL_TRUE); } int main() { glfwInit(); #if __APPLE__ glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT,GL_TRUE); #endif glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR,3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR,3); glfwWindowHint(GLFW_OPENGL_PROFILE,GLFW_OPENGL_CORE_PROFILE); glfwWindowHint(GLFW_RESIZABLE,GL_FALSE); GLFWwindow *window=glfwCreateWindow(800,600,"Learn OpenGL",nullptr,nullptr); if(window==nullptr) { std::cout<<"Failed to create GLFW window!"<