OpenGL ® 着色语言规范 1.20 版http://www.opengl.org/registry/doc/GLSLangSpec.Full.1.20.8.pdf显示以下内容:
struct gl_LightSourceParameters {
vec4 ambient; // Acli
vec4 diffuse; // Dcli
vec4 specular; // Scli
vec4 position; // Ppli
vec4 halfVector; // Derived: Hi
vec3 spotDirection; // Sdli
float spotExponent; // Srli
float spotCutoff; // Crli
// (range: [0.0,90.0], 180.0)
float spotCosCutoff; // Derived: cos(Crli)
// (range: [1.0,0.0],-1.0)
float constantAttenuation; // K0
float linearAttenuation; // K1
float quadraticAttenuation;// K2
};
uniform gl_LightSourceParameters gl_LightSource[gl_MaxLights];
此外,http://www.lighthouse3d.com/opengl/glsl/index.php?ogldir1显示了以下代码片段:
lightDir = normalize(vec3(gl_LightSource[0].position));
https://cvs.khronos.org/svn/repos/registry/trunk/public/webgl/doc/spec/WebGL-spec.html#5.10显示了许多 uniform* 函数,但似乎没有处理统一变量数组,例如gl_LightSource[0]。
我们如何使用 JavaScript在WebGL中设置 gl_LightSource[0] 字段?例如,gl_LightSource[0].position
在此先感谢您的帮助。
注意:在http://www.khronos.org/message_boards/viewtopic.php?f=43&t=3373上发帖