SOURCES: DFBSee-API-fix.patch (NEW) - API related compilation fix ...

hawk hawk at pld-linux.org
Thu Apr 6 13:23:07 CEST 2006


Author: hawk                         Date: Thu Apr  6 11:23:07 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- API related compilation fix taken from DirectFB CVS

---- Files affected:
SOURCES:
   DFBSee-API-fix.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/DFBSee-API-fix.patch
diff -u /dev/null SOURCES/DFBSee-API-fix.patch:1.1
--- /dev/null	Thu Apr  6 13:23:07 2006
+++ SOURCES/DFBSee-API-fix.patch	Thu Apr  6 13:23:02 2006
@@ -0,0 +1,33 @@
+===================================================================
+RCS file: /cvs/directfb/DFBSee/src/main.c,v
+retrieving revision 1.58
+retrieving revision 1.59
+diff -u -r1.58 -r1.59
+--- DFBSee/src/main.c	2002/11/01 23:08:39	1.58
++++ DFBSee/src/main.c	2005/04/09 20:53:16	1.59
+@@ -53,10 +53,10 @@
+ main (int    argc, 
+       char **argv)
+ {
+-  DFBCardCapabilities    caps;
+-  DFBSurfaceDescription  dsc;
+-  IDirectFBEventBuffer  *buffer;
+-  IDirectFBSurface      *image_area;
++  DFBGraphicsDeviceDescription  desc;
++  DFBSurfaceDescription         dsc;
++  IDirectFBEventBuffer         *buffer;
++  IDirectFBSurface             *image_area;
+   Media *media = NULL;
+   double zoom;
+   double adjust;
+@@ -78,8 +78,8 @@
+   /* create the super interface */
+   DFBCHECK (DirectFBCreate (&dfb));
+ 
+-  dfb->GetCardCapabilities (dfb, &caps);
+-  hw_stretchblit = caps.acceleration_mask & DFXL_STRETCHBLIT;
++  dfb->GetDeviceDescription (dfb, &desc);
++  hw_stretchblit = desc.acceleration_mask & DFXL_STRETCHBLIT;
+   
+   dfb->SetCooperativeLevel (dfb, DFSCL_FULLSCREEN);
+ 
================================================================


More information about the pld-cvs-commit mailing list