Skip to content
  • 144k Topics
    718k Posts

    apparently this functionality has been removed?

    it had been working up until i must have upgraded my compiler or something. using clang ARM 64bit on mac (Qt Creator)

    anyone have a drop-in replacement?

  • Jobs, project showcases, announcements - anything that isn't directly development
    4k Topics
    23k Posts

    Thank you very much.

  • Everything related to designing and design tools

    125 Topics
    376 Posts

    The Blend effect in QtGraphicalEffects was removed in Qt6, so how can I choose a blend mode for texture images?

  • Everything related to the QA Tools

    72 Topics
    204 Posts

    @jagadish Thank you

  • Everything related to learning Qt.

    376 Topics
    2k Posts

    @NeilParker-Qt Hey Neil, Thank you for sharing your challenge from the Into to QML course!

    I like the animation you added to bring up the additional details on the business card, and the icons add a lot to the design. The resizing whilst maintaining the aspect ratio was also a nice touch! Overall, with the headshot as the background, it looks like a very professional business card!

    I think some basic theming to the details button so the font and style match the rest of the design would finish off the application.

    Great job

  • 2k Topics
    13k Posts

    When you want to include some headers of a library you also must pass the include path to the compiler.
    If you use cmake, use target_include_directories() and add the desired include paths there. Later when you use this library (aka you link them with target_link_libraries()), cmake will automatically add the paths specified.

  • 4k Topics
    17k Posts

    @JoeCFD Try the following

    Qt3DCore::QEntity* createTorusWithGradient(Qt3DCore::QEntity* rootEntity) { Qt3DCore::QEntity* torusEntity = new Qt3DCore::QEntity(rootEntity); // Torus mesh Qt3DExtras::QTorusMesh* torusMesh = new Qt3DExtras::QTorusMesh(torusEntity); torusMesh->setRadius(5.0f); torusMesh->setMinorRadius(1.0f); torusMesh->setRings(100); torusMesh->setSlices(20); torusEntity->addComponent(torusMesh); // Transform Qt3DCore::QTransform* transform = new Qt3DCore::QTransform(torusEntity); transform->setScale3D(QVector3D(1.5f, 1.5f, 1.5f)); // Fixed typo transform->setRotation(QQuaternion::fromAxisAndAngle(QVector3D(1, 0, 0), 60.0f)); torusEntity->addComponent(transform); // Custom material setup Qt3DRender::QMaterial* material = new Qt3DRender::QMaterial(torusEntity); // Effect, technique, render pass, and shader Qt3DRender::QEffect* effect = new Qt3DRender::QEffect(); Qt3DRender::QTechnique* gl3Technique = new Qt3DRender::QTechnique(); Qt3DRender::QRenderPass* gl3Pass = new Qt3DRender::QRenderPass(); Qt3DRender::QShaderProgram* glShader = new Qt3DRender::QShaderProgram(); // Simple vertex shader const QByteArray vertexShaderCode = R"( #version 330 core in vec3 vertexPosition; in vec3 vertexNormal; uniform mat4 modelViewProjection; out vec3 fragPosition; void main() { fragPosition = vertexPosition; gl_Position = modelViewProjection * vec4(vertexPosition, 1.0); } )"; // Simple fragment shader with color parameter const QByteArray fragmentShaderCode = R"( #version 330 core in vec3 fragPosition; out vec4 fragColor; uniform vec4 color; void main() { fragColor = color; // Use the color parameter directly } )"; // Set shader code glShader->setVertexShaderCode(vertexShaderCode); glShader->setFragmentShaderCode(fragmentShaderCode); // Connect shader program to render pass gl3Pass->setShaderProgram(glShader); gl3Technique->addRenderPass(gl3Pass); // Set OpenGL 3.3 Core profile gl3Technique->graphicsApiFilter()->setApi(Qt3DRender::QGraphicsApiFilter::OpenGL); gl3Technique->graphicsApiFilter()->setMajorVersion(3); gl3Technique->graphicsApiFilter()->setMinorVersion(3); gl3Technique->graphicsApiFilter()->setProfile(Qt3DRender::QGraphicsApiFilter::CoreProfile); // Add technique to effect effect->addTechnique(gl3Technique); material->setEffect(effect); // Add a color parameter material->addParameter(new Qt3DRender::QParameter("color", QColor::fromRgbF(0.0f, 1.0f, 0.0f, 1.0f))); // Add material to entity torusEntity->addComponent(material); // Debug shader compilation errors QObject::connect(glShader, &Qt3DRender::QShaderProgram::statusChanged, [=](Qt3DRender::QShaderProgram::Status status) { if (status == Qt3DRender::QShaderProgram::Error) { qDebug() << "Shader Error:" << glShader->log(); } }); return torusEntity; }
  • This is where all the posts related to the Qt web services go. Including severe sillyness.
    1k Topics
    10k Posts

    @exactchange
    First: stop insulting others! Read and follow https://forum.qt.io/topic/113070/qt-code-of-conduct Unless you want to be banned from here.
    Second: this is user forum, most people here are not from QtCompany and don't spam you - why are you insulting them?

    If you want to be constructive you should at least mention what kind of mails you get, so that somebody can figure out from where it is coming and how to stop it.