Searched defs:videoModes (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Frontends/VBoxFB/
H A DHelper.cpp25 videoMode videoModes[MAX_VIDEOMODES] = {{0}}; variable
50 ((videoModes[existingMode].width != (uint32_t)width) ||
51 (videoModes[existingMode].height != (uint32_t)height) ||
52 (videoModes[existingMode].bpp != (uint32_t)bpp)))
54 videoModes[numVideoModes].width = (uint32_t)width;
55 videoModes[numVideoModes].height = (uint32_t)height;
56 videoModes[numVideoModes].bpp = (uint32_t)bpp;
78 if ((videoModes[i].width >= width) && (videoModes[i].height >= height) &&
79 (videoModes[
[all...]

Completed in 1874 milliseconds