Using OpenGL Without X-Window System

前端 未结 5 458
伪装坚强ぢ
伪装坚强ぢ 2020-12-14 18:03

How to OpenGL on Linux Platform Without X-Window System, can I send OpenGL Graphics Directly to Framebuffer Device?

There Is Project Named DirectFB (Direct FrameBuff

相关标签:
5条回答
  • 2020-12-14 18:24

    As you said, you need a driver to do this. 99.9% of all Linux graphics drivers use X11, so unless you have a DirectFB OpenGL driver for your hardware, you are stuck with using X11.

    0 讨论(0)
  • 2020-12-14 18:32

    You can use Mesa for framebuffer-based software rendering.

    0 讨论(0)
  • 2020-12-14 18:43

    This is how i did it in my ubuntu 11.04 in detail: 1- Install the dependencies using the command:

    sudo apt-get install xutils-dev libpciaccess-dev x11proto-dri2-dev x11proto-gl-dev libxdamage-dev libxfixes-dev
    

    2- The mesa library needs libdrm version >= 2.4.24 which is not available in the ubuntu 11.04 repository (older version is available) so you have to download the source and build it using the following commands:

    ./configure
    make
    make install
    

    3-Download mesa library and then compile it using the following commands: ./configure --prefix=install_directory

    make realclean
    make linux-fbdev
    sudo make install
    

    be careful when you choose the install_directory so that you don't overwrite the system's mesa library. after that compile your application using the options : -lGL -lOSMesa -ldl -L'install_directory/lib' -I'install_directory/include'

    0 讨论(0)
  • 2020-12-14 18:48

    Apparently is possible to have SDL running without X.

    Basically, your kernel should have framebuffer support and you could use SDL on top of DirectFB.

    These threads are ok:

    http://lists.libsdl.org/pipermail/sdl-libsdl.org/2006-October/058305.html

    http://forums.libsdl.org/viewtopic.php?t=4079

    0 讨论(0)
  • 2020-12-14 18:49

    I use the SDL (Simple Direct Media Layer) for OpenGL programming in Linux. This site has some nice tutorials to get you set up. One advantage of using SDL is that it will port across platforms, so once you get something running on Linux, it'll transfer right over to Windows so long as you have SDL installed there.

    0 讨论(0)
提交回复
热议问题