Lines Matching defs:mode
27 // both full screen and windowed mode windows
110 const GLFWvidmode* mode = glfwGetVideoMode(monitor);
114 0, 0, mode->width, mode->height,
115 mode->refreshRate);
172 const GLFWvidmode* mode = glfwGetVideoMode(monitor);
174 glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate);
175 glfwWindowHint(GLFW_RED_BITS, mode->redBits);
176 glfwWindowHint(GLFW_GREEN_BITS, mode->greenBits);
177 glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits);
179 width = mode->width;
180 height = mode->height;