Lines Matching defs:bpp
34 * @param bpp bits per pixel of the current video mode
37 DFBEnumerationResult enumVideoModesHandler(int width, int height, int bpp, void *callbackdata)
44 if (bpp >= 16)
48 int32_t existingMode = getBestVideoMode(width, height, bpp);
52 (videoModes[existingMode].bpp != (uint32_t)bpp)))
56 videoModes[numVideoModes].bpp = (uint32_t)bpp;
69 * @param bpp requested bit depth
71 int32_t getBestVideoMode(uint32_t width, uint32_t height, uint32_t bpp)
79 (videoModes[i].bpp >= bpp))
90 (videoModes[i].bpp < videoModes[bestMode].bpp))