stands for Direct Frame Buffer. It is a software library for GNU/Linux/Unix-based operating systems.

learn more… | top users | synonyms

0
votes
0answers
21 views

DirectFB blending issue

Here is the blending equation I am trying to achieve. From what I have seen, I don't think it is possible, but the DirectFB docs don't cover this area very clearly, so I may be missing something. ...
0
votes
1answer
22 views

WebkitDFB with LiTE toolkit - Tab key not captured in webview

I'm trying to use WebkitDFB r124228 tree. The WebView cannot receive Tab key events. I'm not sure why? I tried handling the key event in LiTE program and it seems to capture TAB key. But the ...
0
votes
0answers
42 views

How to embed an external application in QWidget in DirectFB using QT

I want to call an external appliction (QT application only) using QProcess and embed into a QWidget in QT with DiretFB. I have implemented same thing in X11 using QEmbedContainer but there is no ...
0
votes
0answers
39 views

What's wrong with this DirectFB Bleding example?

I got this from the DFB wiki tutorial: #include <directfb.h> #include <iostream> using namespace std; #define DFBCHECK(x...) \ { ...
0
votes
0answers
178 views

How to run this DFB image example on Ubuntu 12.04 64-bit with DirectFB 1.6.3?

This same example runs with no problem in my older Ubuntu 10.10 with DirectFB 1.4.11 and shows a yellow line in the center of the black screen: #include <iostream> #include <stdio.h> ...
0
votes
0answers
230 views

What's wrong with this DirectFB Blit example?

I got the directfb image example, and I'm trying to blit an image, as stated here. So, this is my code: #include <stdio.h> #include <unistd.h> #include <directfb.h> static ...
0
votes
3answers
404 views

How to execute this DirectFB sample?

I got the following directFB example code form the tutorials: #include <stdio.h> #include <unistd.h> #include <directfb/directfb.h> static IDirectFB *dfb = NULL; static ...
1
vote
1answer
211 views

USB mouse hotplugging in DirectFB/QT Embedded

Is there any way to achieve hot-plugging of USB mouse in DirectFB 1.2.9 or Qt Embedded 4.7.3? Currently my application stack is thus.. ----------------- GUI ----------------- Qt Embedded ...
0
votes
1answer
103 views

FATAL: Module fusion not found [closed]

I am trying to build Linux Fusion for DirectFB. I downloaded it from directfb.org . The steps are described in README. They are asking for modprobe fusion after make and make install. When i run ...
1
vote
0answers
60 views

DirectFB GetStringWidth function

I m using DirectFB For GUI of Device. I have problem to get string width using "GetStringWidth" function of DirecFB. When I have pass the "a" then it returns "9" width of string and if i will pass "รค" ...
0
votes
1answer
276 views

DirectFB cross-compiled for iMX.53 - crash on startup

Trying to get a working directfb for use in an embedded system based on an i.MX53 processor (which is an ARM Cortex-A8 core) running Linux 2.6.35.3 (as supplied by Freescale). I have installed a ...
1
vote
1answer
208 views

why the code return 23

In the tutorials of directfb, the link is Simple fullscreen application that draws a horizontal line My question is why it return 23? in ASCII, 23 means ETB, what's the reason to return ETB? It ...
0
votes
0answers
136 views

DirectFB 1.2, enable source alpha mask

I'd need help with DirectFB 1.2...can someone explain how to use the SetSourceMask() onto a surface to have masked alpha blitted images? An example could be to have a string with a gradient ...
0
votes
0answers
81 views

DirectFB 1.6.1 - Simple example to enable anti-aliasing for graphics and/or strings

can someone show me how to enable on DirectFB 1.6.1 successfully antialiasing for graphics and text? I tried to activate alpha blending as explained in the api references, but with no success.. Lines ...
0
votes
0answers
194 views

Mesa3D Without X

I've spent the past 2 days searching this topic and I haven't found any up-to-date answers. I have a test project that is being based on the latest development LFS (based on Kernel 3.4.1) but without ...
0
votes
0answers
137 views

Why this DFB example gives 2 “press” or 2 “release” events when there's only one?

I'm trying to understand the use of CreateInputEventBuffer, and I have the following test: #include <stdlib.h> #include <stdio.h> #include <unistd.h> #include <directfb.h> ...
0
votes
0answers
150 views

Keyboard returns wrong keycode for Latin characters

I am writing an application that handles key presses using DirectFB v1.4.2 / Linux keyboard driver. I am receiving key codes with wrong values for Latin characters. On pressing character 'a' in USB ...
1
vote
0answers
217 views

Directfbgl with Qt-4.6.2

I am using Qt-4.6.2 cross-compiled for Linux/MIPS device with directfb-1.4.14. I am trying to create overlays on top of my QT application which plays some videos. Recently on directfb website in ...
1
vote
3answers
1k views

Accessing multiple framebuffers in Qt embedded + directFB?

I am developing Qt application for a embedded linux/MIPS device. So far managed to execute my Qt application on the device. Now I need to create overlays on top of video. Hardware provides four ...
2
votes
1answer
1k views

DirectFB data from memory buffer

I need a very fast way of displaying a data buffer to screen. I first tried accessing the linux framebuffer and that proved to be quite good. Then I learned about directFB and I liked the extra ...
12
votes
2answers
2k views

Android GUI architecture - relation between Surface/view/window/canvas

========================= UPDATE: After several days googling and experiments, I have found the answers for most of those dumb questions. See the answers I submitted. ========= What is the ...
0
votes
1answer
639 views

SDL app using DirectFB error: No available video device

I'm hoping this is something simple. I am writing an app for an embedded linux platform from my Ubuntu linux desktop. The app itself works fine under X11. I can also get it to work using the fbcon ...
2
votes
1answer
382 views

Can I build FireBreath NPAPI Plugin for DirectFB?

Is it possible to build NPAPI plugin using FireBreath for webkit browser running on directFB, embedded linux? I am asking because I found that while building a my test plugin on ubuntu, It is using ...
3
votes
1answer
233 views

Converting two bit color to eight bit color

I've color values coming in six bits, with two bits each for red, green and blue. So black would be represented as binary 000000, red 110000, blue 000011, yellow 111100 and so on. I have to convert ...
0
votes
1answer
681 views

from xserver to xdirectfb

Hi Is it possible to uninstall xserver and use xdirectfb with a tiny window manager - like awesome ? Do I need to compile from source every appllication I want to use with xdirectfb ? From these ...
0
votes
1answer
442 views

Emulate keyboard in linux

I need to emulate a key into a particular process running, i have no control about it's source code and Xserver isn't running, I believe the proc is using directfb to handle keyboard inputs.
2
votes
2answers
990 views

LinuxFB + DirectFB at same time?

I have an embedded plarform which has 2 graphic layers (/dev/fb0 and /dev/fb1). I want to use 2 separate processes: One using /dev/fb0 directly (raw mode, no video libs). The other using /dev/fb1 ...
1
vote
2answers
256 views

is it possible to make Qtcreator target as directfb instead of X11

my target to display output is directfb window. i need to develop an qt application. i found developing application in qtcreator is much easier but problem is output will be seen on X11 window. can ...
0
votes
1answer
310 views

compilation error in webkit-gtk

I am getting following error while compiling webkit-gtk for directfb, any guess how to resolve it? make[1]: Entering directory ...
8
votes
6answers
6k views

Why is DirectFB not more widely used in GNU/Linux? Are there crippling limitations to it that don't exist in X11?

As far as I understand, DirectFB offers hardware acceleration for many kinds of graphics cards. Additionally, it's smaller, faster, and uses up less memory than X11. Why then, is it not more ...
1
vote
2answers
4k views

Cairo “Could not find libpng in the pkg-config search path”

I'm trying to install GTK-DFB and cairo is a requirement. When I try to build it from source, it throws: checking for cairo's PNG functions feature... configure: WARNING: Could not find libpng in ...
0
votes
1answer
816 views

DirectFB bringup [duplicate]

Possible Duplicate: How to develop a DirectFB app without leaving X.11 environment I installed DirectFB 1.4.3 in my Fedora PC. When I try to run some bin application of DirectFB like ...
1
vote
1answer
265 views

DirectFB & Animated Gifs

How do I display animated gifs using DirectFB?
0
votes
1answer
390 views

Which windowing system for embedded Linux supports Hardware Overlay?

Which windowing system for embedded linux supports hardware overlay? Is it possible to add hardware overlay support in Qt for embedded Linux?
8
votes
6answers
7k views

How to develop a DirectFB app without leaving X.11 environment

I'm trying to develop a GUI application for an embedded platform, without any windowing whatsoever and I'm doing that with DirectFB, and it suits my needs very fine. Since the embedded I develop for ...