I'm working with the AT91SAM9261 (an ARM processor) using ATMEL's Evaluation Kit that has a QVGA screen.
When I boot, screen is basically black (after the kernel loads). However, after DirectFB is run and shutdown, the screen now has a purplish color. This is basically the code I use to start up DirectFB: //----- initialize directfb mwexception.exceptionSpecific = (int) DirectFBInit(&argc, &argv); if (mwexception.exceptionSpecific) { mwexception.exceptionType = eMwDfbError; throw mwexception; } //----- create the super interface mwexception.exceptionSpecific = (int) DirectFBCreate(&directfbSuperInterface); if (mwexception.exceptionSpecific) { mwexception.exceptionType = eMwDfbError; throw mwexception; } exit(1); At this point the screen will be a dingy purple when I would have expected it to be black. It this some default? If so is there a way to change it? It seems that if a DirectFB program stops it displays this funny color. Thanks! Lloyd _______________________________________________ directfb-users mailing list directfb-users@directfb.org http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-users