Lines Matching defs:Height
12 GLint Width = 200, Height = 150;
22 static void Reshape(int width, int height)
25 Height = height;
27 glViewport(0, 0, (GLint)width, (GLint)height);
51 glScissor(0, 0, Width / 2, Height / 2);
55 glScissor(Width / 2, 0, Width - Width / 2, Height / 2);
59 glScissor(0, Height / 2, Width / 2, Height - Height / 2);
63 glScissor(Width / 2, Height / 2, Width - Width / 2, Height - Height / 2);
102 glutInitWindowPosition(0, 0); glutInitWindowSize( Width, Height );