Re: [directfb-users] create surface/display layer failed

2008-11-26 Thread Nikita Egorov
y anand <[EMAIL PROTECTED]> >> Cc: directfb-users@directfb.org >> Sent: Thursday, 27 November, 2008 11:37:52 AM >> Subject: Re: [directfb-users] create surface/display layer failed >> >> If your requirement is just to have a surface to draw something to be >> blitted

Re: [directfb-users] create surface/display layer failed

2008-11-26 Thread Amarinder Singh Sethi
-- > *From:* Amarinder Singh Sethi <[EMAIL PROTECTED]> > *To:* vijay anand <[EMAIL PROTECTED]> > *Cc:* directfb-users@directfb.org > *Sent:* Thursday, 27 November, 2008 11:37:52 AM > *Subject:* Re: [directfb-users] create surface/display layer failed > > If y

Re: [directfb-users] create surface/display layer failed

2008-11-26 Thread vijay anand
Subject: Re: [directfb-users] create surface/display layer failed If your requirement is just to have a surface to draw something to be blitted onto the primary surface later, then you don't really need a new layer. You can create a new surface and do all your drawings there. After this you c

Re: [directfb-users] create surface/display layer failed

2008-11-26 Thread Amarinder Singh Sethi
If your requirement is just to have a surface to draw something to be blitted onto the primary surface later, then you don't really need a new layer. You can create a new surface and do all your drawings there. After this you can do a blit onto the primary surface. On Wed, Nov 5, 2008 at 12:52 PM,

Re: [directfb-users] create surface/display layer failed

2008-11-25 Thread vijay anand
6 PM Subject: Re: [directfb-users] create surface/display layer failed After quick look at the code all is OK Did you try to set others width and heigth (e.g. 320x240) and only one caps DSCAPS_VIDEOONLY ? 2008/11/14 vijay anand <[EMAIL PROTECTED]>: > refer the attached file

Re: [directfb-users] create surface/display layer failed

2008-11-25 Thread vijay anand
Yes. Our hardware supports only 2 layers. So it's not possible to create 3rd layer From: chiachen <[EMAIL PROTECTED]> To: directfb-users@directfb.org Sent: Wednesday, 26 November, 2008 9:19:10 AM Subject: Re: [directfb-users] create surface/di

Re: [directfb-users] create surface/display layer failed

2008-11-13 Thread Nikita Egorov
2008/11/13 vijay anand <[EMAIL PROTECTED]>: > I could able to create surface with DFBSurfaceCapabilities set as > DSCAPS_SUBSURFACE. Is this the right method to create user surface (other > than primary)? No, subsurface is only a part of other surface. What is your problem? This is a sample cod

Re: [directfb-users] create surface/display layer failed

2008-11-13 Thread vijay anand
rectfb-users@directfb.org Sent: Wednesday, 5 November, 2008 1:12:18 PM Subject: Re: [directfb-users] create surface/display layer failed You can't create a display layer if it is not supported by your hardware driver. You should use the IDirectFB::CreateSurface() function instead. http://

Re: [directfb-users] create surface/display layer failed

2008-11-04 Thread Nikita Egorov
You can't create a display layer if it is not supported by your hardware driver. You should use the IDirectFB::CreateSurface() function instead. http://directfb.org/docs/DirectFB_Reference_1_3/IDirectFB_CreateSurface.html 2008/11/5 vijay anand <[EMAIL PROTECTED]>: > Hi, > > In our application we