Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Graphics driver DDK for QNX 6.5: (6 Items)
   
Graphics driver DDK for QNX 6.5  
I'm trying to compile a graphics driver for QNX 6.5.   I installed the only DDK I found which was 6.3.0.   I'm getting 
compiler errors concerning missing structures in some .h files.   Is there a newer DDK around?

Thank you
RE: Graphics driver DDK for QNX 6.5  
no, avoid that ddk, you need to check out the stuff from foundry27

hardware/devg
services/display
lib/gf
lib/gfpr

etc, etc ...

-----Original Message-----
From: Mitchell Schoenbrun [mailto:community-noreply@qnx.com] 
Sent: Monday, September 06, 2010 7:18 PM
To: advanced-graphics
Subject: Graphics driver DDK for QNX 6.5

I'm trying to compile a graphics driver for QNX 6.5.   I installed the
only DDK I found which was 6.3.0.   I'm getting compiler errors
concerning missing structures in some .h files.   Is there a newer DDK
around?

Thank you



_______________________________________________

Advanced Graphics
http://community.qnx.com/sf/go/post66079
RE: Graphics driver DDK for QNX 6.5  
There's no official DDK for QNX 6.4.x and beyond.   You'll need the
latest public graphics headers from F27 as well as a libdisputilS.a.
Source is on F27 (if you still have access)

What compiler error are you seeing? 



-----Original Message-----
From: Mitchell Schoenbrun [mailto:community-noreply@qnx.com] 
Sent: September 6, 2010 7:18 PM
To: advanced-graphics
Subject: Graphics driver DDK for QNX 6.5

I'm trying to compile a graphics driver for QNX 6.5.   I installed the
only DDK I found which was 6.3.0.   I'm getting compiler errors
concerning missing structures in some .h files.   Is there a newer DDK
around?

Thank you



_______________________________________________

Advanced Graphics
http://community.qnx.com/sf/go/post66079
Re: RE: Graphics driver DDK for QNX 6.5  
Here are the compiler errors

banshee.h:611: error: expected declaration specifiers or '...' before 'disp_aperture_t'
banshee.h:626: error: expected declaration specifiers or '...' before 'disp_aperture_t'
banshee.h:628: error: expected declaration specifiers or '...' before 'disp_surface_info_t'
banshee.h:631: error: expected declaration specifiers or '...' before 'disp_alloc_info_t'
banshee.h:637: error: expected declaration specifiers or '...' before 'disp_alloc_info_t'

I think it's pretty clear I need at least a new display.h

I looked in hardware/devg, services/display, lib/gf and lib/gfpr with no luck.   

libdisputilS.a came with 6.5 so I'm ok there.
RE: RE: Graphics driver DDK for QNX 6.5  
that's in hardware/devg/public/graphics/vmem.h

make sure to do a make hinstall first ... just to be safe

-----Original Message-----
From: Mitchell Schoenbrun [mailto:community-noreply@qnx.com] 
Sent: Tuesday, September 07, 2010 3:50 PM
To: advanced-graphics
Subject: Re: RE: Graphics driver DDK for QNX 6.5

Here are the compiler errors

banshee.h:611: error: expected declaration specifiers or '...' before
'disp_aperture_t'
banshee.h:626: error: expected declaration specifiers or '...' before
'disp_aperture_t'
banshee.h:628: error: expected declaration specifiers or '...' before
'disp_surface_info_t'
banshee.h:631: error: expected declaration specifiers or '...' before
'disp_alloc_info_t'
banshee.h:637: error: expected declaration specifiers or '...' before
'disp_alloc_info_t'

I think it's pretty clear I need at least a new display.h

I looked in hardware/devg, services/display, lib/gf and lib/gfpr with no
luck.   

libdisputilS.a came with 6.5 so I'm ok there.



_______________________________________________

Advanced Graphics
http://community.qnx.com/sf/go/post66201
Re: Graphics driver DDK for QNX 6.5  
Thanks All,

    Downloading the entire graphics trunk and moving the graphics/*.h files over was all I needed to do.   I know have a
 banshee graphics driver for 6.5, whoopee!

Mitchell