GLSL版本1.20允许GLSL Uniforms初始化

时间:2012-08-01 21:51:44

标签: opengl glsl intel

我收到以下错误:

WARNING: uniforms initializing is allowed from GLSL version 1.20
WARNING: Only GLSL version > 110 allows postfix "F" or "f" for float

虽然我知道如何解决这个问题,但我想知道为什么会发生这种情况,因为这个机器出现了OpenGL 3.1,因此有GLSL 1.4:

12:40:58 [INFO] Intel(R) HD Graphics Family
12:40:58 [INFO] OpenGL 3.1.0 - Build 8.15.10.2509

编辑: 有问题的着色器是一个fragement着色器(没有顶点着色器):

uniform sampler2D sampler;
uniform sampler2D bump;

uniform float imageSize;
uniform float range = 50;

void main() {
    vec2 pos = gl_TexCoord[0].xy;

    float height = texture2D(bump, gl_TexCoord[0].xy).r - 0.5;

    pos.y += height * range / imageSize;

    gl_FragColor = texture2D(sampler, pos);

            //gl_FragColor = texture2D(sampler, pos) *  (1 + (height - 0.3f) * 25);
}

1 个答案:

答案 0 :(得分:6)

GLSL规范声明如果着色器未提供#version directive,则它假定版本为1.10。确保始终在着色器顶部提供#version指令。