Results 1 to 2 of 2

Thread: Won't output Gui to FrameBuffer, ask for X Server.

  1. #1
    Join Date
    Nov 2009
    Posts
    68
    Qt products
    Qt4 Qt/Embedded
    Thanks
    1
    Thanked 1 Time in 1 Post

    Default Won't output Gui to FrameBuffer, ask for X Server.

    I am developing QT-ARM-Code on my Ubuntu Linux box. I want the GUI to output to the FrameBuffer.

    I made a very simple application compile it under the Arm Compiler, download it to my arm system and run it and it says ArmTest: cannot connect to X server.

    I am running it using "./ArmTest -qws" but it still wants to connect to the X Server instead of my FrameBuffer.

    What am I doing wrong? Here is my very simple code.

    ==========================================

    #include <QApplication>
    #include "mainwindow.h"

    int main(int argc, char *argv[])
    {
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
    }

  2. #2
    Join Date
    Feb 2012
    Posts
    2
    Qt products
    Qt/Embedded
    Platforms
    Unix/X11

    Default Re: Won't output Gui to FrameBuffer, ask for X Server.

    Did you solve this problem? I have same problem. And ı could not found the right answer.

Similar Threads

  1. Framebuffer conflict
    By Vidar Bøe in forum Qt for Embedded and Mobile
    Replies: 0
    Last Post: 21st November 2008, 11:33
  2. framebuffer
    By damien in forum Qt for Embedded and Mobile
    Replies: 0
    Last Post: 22nd September 2008, 22:27
  3. OpenGL Framebuffer
    By ^NyAw^ in forum Qt Programming
    Replies: 10
    Last Post: 25th March 2008, 13:42
  4. Qt without X11/xorg? Framebuffer?
    By stodge in forum Newbie
    Replies: 4
    Last Post: 12th April 2007, 18:40
  5. synching client readings to server output
    By OnionRingOfDoom in forum Qt Programming
    Replies: 14
    Last Post: 28th January 2006, 19:15

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.