我是OpenGL和GLM的新手。我一直在关注在线教程,希望找到一个可行的方法。一个教程告诉我使用此代码段:

//Define the screen width and height, and get the ratio
const float S_WIDTH = 800;
const float S_HEIGHT = 600;
const float S_RATIO = S_WIDTH / S_HEIGHT;

//In my shader "shdprog" get the uniform variable "ortho"'s location
GLuint orthoadr = glGetUniformLocation(shdprog, "ortho");

//Create a 4x4 matrix using glm
glm::mat4 ortho = glm::ortho(-S_RATIO, S_RATIO, -1.f, 1.f, -1.f, 1.f);

//Set the custom GLSL "ortho" uniform to the value of the glm::mat4 ortho
glUniform4fv(orthoadr, 1, GL_FALSE, glm::value_ptr(ortho)/*too many arguments in function call*/);

无论出于何种原因,Visual Studio都会告诉我glm::value_ptr()的参数太多(“函数调用中的参数太多”)。即使删除所有参数,也不会改变任何内容。

我的教程写错了吗?还是我输错了什么?

最佳答案

glUniform4fv采用三个参数。您正在寻找的功能显然是glUniformMatrix4fv,它需要四个。

08-25 19:05