Phong照明模型实际上并没有照亮任何东西

时间:2011-12-07 06:23:32

标签: c++ opengl glsl

我目前有一个在openGL / GLSL中实现Phong Lighting Model的任务。我目前正在使用的两个着色器如下。问题是在片段着色器中,如果我不将vColor添加到gl_FragColor,则整个形状为黑色。但是,如果我添加vColor,那么整个形状就是那种根本没有光照的颜色。我一直试图解决这个问题几个小时,现在没有运气。这是什么原因?这是我的着色器中的问题,还是openGL代码中的问题?我正在使用一种材质和一种点光源,我将在着色器之后显示。

编辑:如果我设置gl_FragColor = vec4(N, 1.0),那么对象如下所示:

enter image description here

顶点着色器:

#version 150

in vec4 vPosition;
in vec3 vNormal;

uniform mat4 vMatrix;
uniform vec4 LightPosition;

out vec3 fNorm;
out vec3 fEye;
out vec3 fLight;

void main() {
  fNorm = vNormal;
  fEye = vPosition.xyz;
  fLight = LightPosition.xyz;

  if(LightPosition.w != 0.0) {
    fLight = LightPosition.xyz - vPosition.xyz;
  }

gl_Position = vMatrix * vPosition;
}

片段着色器:

#version 150

in vec3 fNorm;
in vec3 fLight;
in vec3 fEye;

uniform vec4 vColor;
uniform vec4 AmbientProduct, DiffuseProduct, SpecularProduct;
uniform mat4 vMatrix;
uniform vec4 LightPosition;
uniform float Shininess;

void main(){
    vec3 N = normalize(fNorm);
    vec3 E = normalize(fEye);
    vec3 L = normalize(fLight);
    vec3 H = normalize(L + E);

    vec4 ambient = AmbientProduct;

    float Kd = max(dot(L, N), 0.0);
    vec4 diffuse = Kd * DiffuseProduct;

    float Ks = pow(max(dot(N, H), 0.0), Shininess);
    vec4 specular = Ks * SpecularProduct;
    if(dot(L,N) < 0.0) 
        specular = vec4(0.0, 0.0, 0.0, 1.0); 

    gl_FragColor = vColor + ambient + diffuse + specular;
}

设置材料和灯光:

void init() {

    setMaterials(vec4(1.0, 0.0, 0.0, 0.0), //ambient
             vec4(1.0, 0.8, 0.0, 1.0), //diffuse
             vec4(1.0, 1.0, 1.0, 1.0), //specular
             100.0); //shine

    setLightSource(vec4(1.0, 0.0, 0.0, 1.0), //ambient
               vec4(1.0, 0.0, 0.0, 1.0), //diffuse
               vec4(1.0, 0.0, 0.0, 1.0), //specular
               vec4(1.0, 2.0, 3.0, 1.0)); //position

    setProducts();

    ....
}

/*
 * Sets the material properties for Phong lighting model.
 */
void setMaterials(vec4 amb, vec4 dif, vec4 spec, GLfloat s) {
    ambient = amb;
    diffuse = dif;
    specular = spec;
    shine = s;

    glUniform1f(vShininess, shine);
}

/*
 * Set light source properties.
 */
void setLightSource(vec4 amb, vec4 dif, vec4 spec, vec4 pos) {
    ambient0 = amb;
    diffuse0 = dif;
    specular0 = spec;
    light0_pos = pos;

    glUniform4fv(vLightPosition, 1, light0_pos);
}

/*
 * Find the products of materials components and light components.
 */
void setProducts(){
    vec4 ambientProduct = ambient * ambient0;
    vec4 diffuseProduct = diffuse * diffuse0;
    vec4 specularProduct = specular * specular0;

    glUniform4fv(vAmbientProduct, 1, ambientProduct);
    glUniform4fv(vDiffuseProduct, 1, diffuseProduct);
    glUniform4fv(vSpecularProduct, 1, specularProduct);

}

1 个答案:

答案 0 :(得分:0)

您的最终照明构图看起来不正确:

gl_FragColor = vColor + ambient + diffuse + specular;

应该是

gl_FragColor = vColor * (ambient + diffuse) + specular;

即。由物体的反照率调制的照明。

相关问题