Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Game Development
  4. QDiffuseSpecularMaterial bug: OpenGL fragment shader not supported
Forum Updated to NodeBB v4.3 + New Features

QDiffuseSpecularMaterial bug: OpenGL fragment shader not supported

Scheduled Pinned Locked Moved Unsolved Game Development
5 Posts 2 Posters 934 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • uaniU Offline
    uaniU Offline
    uani
    wrote on last edited by
    #1

    code:

    Qt3DRender::QMaterial* materialDiffuse = new Qt3DExtras::QDiffuseSpecularMaterial(rootEntity);
    

    reference application: https://doc.qt.io/qt-6/qt3d-simple-cpp-example.html

    bug:

    QOpenGLShader::compile(Fragment): ERROR: 0:7: 'attribute' : not supported in this stage: fragment
    ERROR: 0:7: '' : compilation terminated 
    ERROR: 2 compilation errors.  No code generated.
    
    
    *** Problematic Fragment shader source code ***
    #version 110
    #ifdef GL_KHR_blend_equation_advanced
    #extension GL_ARB_fragment_coord_conventions : enable
    #extension GL_KHR_blend_equation_advanced : enable
    #endif
    #define lowp
    #define mediump
    #define highp
    #line 1
    
    #define LAYER_diffuse
    #define LAYER_specular
    #define LAYER_normal
    uniform highp vec3 eyePosition;
    attribute highp vec3 worldPosition;
    attribute highp vec3 worldNormal;
    uniform highp float shininess;
    uniform highp vec4 ks;
    uniform highp vec4 kd;
    uniform highp vec4 ka;
    /****************************************************************************
    **
    ** Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB).
    ** Contact: https://www.qt.io/licensing/
    **
    ** This file is part of the Qt3D module of the Qt Toolkit.
    **
    ** $QT_BEGIN_LICENSE:BSD$
    ** Commercial License Usage
    ** Licensees holding valid commercial Qt licenses may use this file in
    ** accordance with the commercial license agreement provided with the
    ** Software or, alternatively, in accordance with the terms contained in
    ** a written agreement between you and The Qt Company. For licensing terms
    ** and conditions see https://www.qt.io/terms-conditions. For further
    ** information use the contact form at https://www.qt.io/contact-us.
    **
    ** BSD License Usage
    ** Alternatively, you may use this file under the terms of the BSD license
    ** as follows:
    **
    ** "Redistribution and use in source and binary forms, with or without
    ** modification, are permitted provided that the following conditions are
    ** met:
    **   * Redistributions of source code must retain the above copyright
    **     notice, this list of conditions and the following disclaimer.
    **   * Redistributions in binary form must reproduce the above copyright
    **     notice, this list of conditions and the following disclaimer in
    **     the documentation and/or other materials provided with the
    **     distribution.
    **   * Neither the name of The Qt Company Ltd nor the names of its
    **     contributors may be used to endorse or promote products derived
    **     from this software without specific prior written permission.
    **
    **
    ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
    **
    ** $QT_END_LICENSE$
    **
    ****************************************************************************/
    
    #define FP highp
    
    const int MAX_LIGHTS = 8;
    const int TYPE_POINT = 0;
    const int TYPE_DIRECTIONAL = 1;
    const int TYPE_SPOT = 2;
    struct Light {
        int type;
        FP vec3 position;
        FP vec3 color;
        FP float intensity;
        FP vec3 direction;
        FP float constantAttenuation;
        FP float linearAttenuation;
        FP float quadraticAttenuation;
        FP float cutOffAngle;
    };
    uniform Light lights[MAX_LIGHTS];
    uniform int lightCount;
    
    #line 52
    
    void adsModel(const in FP vec3 vpos, const in FP vec3 vnormal, const in FP vec3 vview, const in FP float shininess,
                  out FP vec3 diffuseColor, out FP vec3 specularColor)
    {
        diffuseColor = vec3(0.0);
        specularColor = vec3(0.0);
    
        FP vec3 n = normalize( vnormal );
    
        FP vec3 s;
        Light light;
        for (int i = 0; i < lightCount; ++i) {
            if (i == 0)
                light = lights[0];
            else if (i == 1)
                light = lights[1];
            else if (i == 2)
                light = lights[2];
            else if (i == 3)
                light = lights[3];
            else if (i == 4)
                light = lights[4];
          
      else if (i == 5)
                light = lights[5];
            else if (i == 6)
                light = lights[6];
            else if (i == 7)
                light = lights[7];
    
            FP float att = 1.0;
            if ( light.type != TYPE_DIRECTIONAL ) {
                s = light.position - vpos;
                if (light.constantAttenuation != 0.0
                  || light.linearAttenuation != 0.0
                  || light.quadraticAttenuation != 0.0) {
                    FP float dist = length(s);
                    att = 1.0 / (light.constantAttenuation + light.linearAttenuation * dist + light.quadraticAttenuation * dist * dist);
                }
                s = normalize( s );
                if ( light.type == TYPE_SPOT ) {
                    if ( degrees(acos(dot(-s, normalize(light.direction))) ) > light.cutOffAngle)
                        att = 0.0;
                }
            } else {
                s = normalize( -light.direction );
            }
    
            FP float diffuse = max( dot( s, n ), 0.0 );
    
            FP float specular = 0.0;
            if (diffuse > 0.0 && shininess > 0.0 && att > 0.0) {
                FP vec3 r = reflect( -s, n );
                FP float normFactor = ( shininess + 2.0 ) / 2.0;
                specular = normFactor * pow( max( dot( r, vview ), 0.0 ), shininess );
            }
    
            diffuseColor += att * light.intensity * diffuse * light.color;
            specularColor += att * light.intensity * specular * light.color;
        }
    }
    
    FP vec4 phongFunction(const in FP vec4 ambient,
                          const in FP vec4 diffuse,
                          const in FP vec4 specular,
                          const in FP float shininess,
                          const in FP vec3 worldPosition,
                          const in FP vec3 worldView,
                          const in FP vec3 worldNormal)
    {
        // Calculate the lighting model, keeping the specular component separate
        FP vec3 diffuseColor, specularColor;
        adsModel(worldPosition, worldNormal, worldView, shininess, diffuseColor, specularColor);
    
        // Combine spec with ambient+diffuse for final fragment color
        FP vec3 color = (ambient.rgb + diffuseColor) * diffuse.rgb
                      + specularColor * specular.rgb;
    
        return vec4(color, diffuse.a);
    }
    
    #line 14
    
    void main()
    {
        gl_FragColor = (((((((phongFunction(ka, kd, ks, shininess, worldPosition, normalize(((eyePosition - worldPosition))), normalize(worldNormal)))))))));
    }
    
    ***
    
    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      You might want to give more details about your system, graphic stack, Qt version, OS, etc.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • uaniU Offline
        uaniU Offline
        uani
        wrote on last edited by uani
        #3

        i might eventually when I find time, now i solved my texture issue i desire to progress my application. I would create a sample project for above but now only tell: AMD Radeon 6800, Win 11 x64, currently latest drivers. Qt 6.4, QtWidget GUI application, qt3dwidget used (https://github.com/florianblume/qt3d-widget)

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #4

          Glad you could solve it. What was the issue ?

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • uaniU Offline
            uaniU Offline
            uani
            wrote on last edited by
            #5

            oh, i'm sorry, i was referring to https://forum.qt.io/topic/140839/qtexturematerial-error-unable-to-find-suitable-texture-unit-for-diffusetexture-ogl-sampler-diffusetexture-wasn-t-set-on-material-rendering-might-not-work-as-expected-dx by "texture issue" where I posted about an issue almost too embarassing to mention it again. This one here I would contribute more research to but i already used more time than i envisioned for my project and i desired to prorgress that.

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved