Lines Matching defs:current
128 printf(" (current mode)");
143 GLFWvidmode current;
191 glGetIntegerv(GL_RED_BITS, ¤t.redBits);
192 glGetIntegerv(GL_GREEN_BITS, ¤t.greenBits);
193 glGetIntegerv(GL_BLUE_BITS, ¤t.blueBits);
195 glfwGetWindowSize(window, ¤t.width, ¤t.height);
197 if (current.redBits != mode->redBits ||
198 current.greenBits != mode->greenBits ||
199 current.blueBits != mode->blueBits)
202 current.redBits, current.greenBits, current.blueBits,
206 if (current.width != mode->width || current.height != mode->height)
209 current.width, current.height,