Title: Zpráva
Hi,
recent CVS version of dfb is not reporting bpp to video mode enumeration callback function. Is this temporary because of code rewrite or intention?
 
I suspect this code in idirectfb.c:
 
IDirectFB_EnumVideoModes( IDirectFB            *thiz,
                          DFBVideoModeCallback  callbackfunc,
                          void                 *callbackdata )
{
     VideoMode *m;
 
     INTERFACE_GET_DATA(IDirectFB)
 
     if (!callbackfunc)
          return DFB_INVARG;
 
     m = dfb_fbdev_modes();
     while (m) {
          if (callbackfunc( m->xres, m->yres,
------->                            0, callbackdata ) == DFENUM_CANCEL)
               break;
 
          m = m->next;
     }
 
     return DFB_OK;
}
JS

Reply via email to