Well finally I solved the problem making the drawing area's size
720x576 in user space without modifing the driver:

DFBCHECK (DirectFBCreate (&dfb));
DFBCHECK (dfb->SetCooperativeLevel (dfb, DFSCL_FULLSCREEN));
  dsc.flags = DSDESC_CAPS | DSDESC_WIDTH | DSDESC_HEIGHT;
  dsc.caps  = DSCAPS_PRIMARY | DSCAPS_FLIPPING;
  dsc.width = 720;
  dsc.height= 576;
DFBCHECK (dfb->CreateSurface( dfb, &dsc, &primary ));

Thank you for your time, regards,
Carlos

_______________________________________________
directfb-dev mailing list
[email protected]
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-dev

Reply via email to