Lines Matching defs:height
33 * @param height height in pixels of the current video mode
37 DFBEnumerationResult enumVideoModesHandler(int width, int height, int bpp, void *callbackdata)
48 int32_t existingMode = getBestVideoMode(width, height, bpp);
51 (videoModes[existingMode].height != (uint32_t)height) ||
55 videoModes[numVideoModes].height = (uint32_t)height;
68 * @param height requested height
71 int32_t getBestVideoMode(uint32_t width, uint32_t height, uint32_t bpp)
78 if ((videoModes[i].width >= width) && (videoModes[i].height >= height) &&
89 (videoModes[i].height < videoModes[bestMode].height) ||