Do not understand captureViews in Diffuse-irradiance tutorial in learnopengl.com
问题 I am learning IBL in https://learnopengl.com/PBR/IBL/Diffuse-irradiance. The tutorial convert a equirectangular to a cubemap by creating 6 views. And the views are the following code: glm::mat4 captureViews[] = { glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3( 1.0f, 0.0f, 0.0f), glm::vec3(0.0f, -1.0f, 0.0f)), glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3(-1.0f, 0.0f, 0.0f), glm::vec3(0.0f, -1.0f, 0.0f)), glm::lookAt(glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3( 0.0f, 1.0f, 0.0f), glm::vec3