Lecture #4 ========== This lecture provides an overview of `texture mapping `_ in OpenGL, using the a `face <../images/awesomeface.png>`_ image and a `container <../images/container.jpg>`_ image. We also learn how to take an input signal from a switch using the `Arduino `_ board. | **Scribe Notes by Ian Moreno:** `Source1 <../scribe_notes/lecture4_notes_Ian_Moreno.docx>`_ | **Scribe Notes by Margaret Kirollos:** `Source2 <../scribe_notes/lecture4_notes_Margaret_Kirollos.docx>`_ `PDF2 <../scribe_notes/lecture4_notes_Margaret_Kirollos.pdf>`_ We will use the same file ``Shader.h`` as before. Open a new window and type in the following code below: :: #include #include #include #include #include "Shader.h" GLfloat mix_value=0.2f; 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); if(key==GLFW_KEY_UP && action==GLFW_PRESS) { mix_value+=0.1f; if(mix_value>1.0f) mix_value=1.0f; } if(key==GLFW_KEY_DOWN && action==GLFW_PRESS) { mix_value-=0.1f; if(mix_value<0.0f) mix_value=0.0f; } } 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!"<`_ library for reading images. On Linux, it can be installed using the command: :: sudo apt-get install libsoil-dev To compile the above program on Linux, run the following command: :: g++ -O3 main.cpp -o textures -lGLEW -lglfw -lGL -lX11 -lpthread -lXrandr -ldl -lXxf86vm -lXinerama -lXcursor -lrt -lm -std=c++11 -I /usr/include/SOIL -lSOIL Note that the above command assumes that the header files (in particular, ``SOIL.h``) is present in the ``/usr/include/SOIL/`` directory. If all goes well, this should produce the binary ``textures``, which you can now run using: :: ./textures