Lines Matching refs:fixedVideoMode
33 videoMode fixedVideoMode = {0};
95 if (sscanf(optarg, "%ux%ux%u", &fixedVideoMode.width, &fixedVideoMode.height,
96 &fixedVideoMode.bpp) != 3)
278 int32_t bestVideoMode = getBestVideoMode(fixedVideoMode.width,
279 fixedVideoMode.height,
280 fixedVideoMode.bpp);
283 ((fixedVideoMode.width != videoModes[bestVideoMode].width) ||
284 (fixedVideoMode.height != videoModes[bestVideoMode].height) ||
285 (fixedVideoMode.bpp != videoModes[bestVideoMode].bpp)))
313 printf("Information: setting video mode to %ux%ux%u\n", fixedVideoMode.width,
314 fixedVideoMode.height, fixedVideoMode.bpp);
315 DFBCHECK(dfb->SetVideoMode(dfb, fixedVideoMode.width,
316 fixedVideoMode.height, fixedVideoMode.bpp));