1

我尝试过不同的机器,打开和关闭 VSync。

我提供了我的主要方法和显示方法。在主要外观中,我使用 GLFWs GetTime 方法计算增量。

如果我明确设置 deltaTime = 0.016 来锁定目标速度,三角形会平稳移动。

int main(int argc, char** argv)
{
    /*
        INIT AND OTHER STUFF SNIPPED OUT
    */

    double currentFrame = glfwGetTime();
    double lastFrame = currentFrame;
    double deltaTime;

    double a=0;
    double speed = 0.6;
    //Main loop
    while(true)
    {
        a++;

        currentFrame = glfwGetTime();
        deltaTime = currentFrame - lastFrame;
        lastFrame = currentFrame;

        /** I know that delta time is around 0.016 at my framerate **/
        //deltaTime = 0.016;

        x = sin( a * deltaTime * speed ) * 0.8f;
        y = cos( a * deltaTime * speed ) * 0.8f;

        display();

        if(glfwGetKey(GLFW_KEY_ESC) || !glfwGetWindowParam(GLFW_OPENED))
            break;
    }

    glfwTerminate();

    return 0;
}

void display()
{
    glClearColor(0.5f, 0.5f, 0.5f, 1.0f);
    glClear(GL_COLOR_BUFFER_BIT);

    glUseProgram(playerProgram);

        glUniform3f(playerLocationUniform,x,y,z);

        glBindBuffer(GL_ARRAY_BUFFER, playerVertexBufferObject);

        glEnableVertexAttribArray(0);
            glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, 0, 0);
            glDrawArrays(GL_TRIANGLES, 0, 3);
        glDisableVertexAttribArray(0);

    glUseProgram(0);
    glfwSwapBuffers();

}
4

1 回答 1

5

您使用deltaTime的好像它是一个全局帧速率,并根据帧号 ( a) 乘以该速率来计算正弦和余弦。这意味着帧之间的微小波动会随着位置的变大deltaTime而导致更大的位置变化。a

在另一种情况下,您设置了一个常量deltaTime,当帧在错误的时间渲染时,您仍然会遇到小故障。

你真正需要做的是:

#define TAU (M_PI * 2.0)

    currentFrame = glfwGetTime();
    deltaTime = currentFrame - lastFrame;
    lastFrame = currentFrame;

    a += deltaTime * speed;

    // Optional, keep the cycle bounded to reduce precision errors
    // if you plan to leave this running for a long time...
    if( a > TAU ) a -= TAU;

    x = sin( a ) * 0.8f;
    y = cos( a ) * 0.8f;
于 2012-09-25T00:45:01.887 回答