-
Notifications
You must be signed in to change notification settings - Fork 0
/
single_double.c
121 lines (98 loc) · 2.37 KB
/
single_double.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
* double.c
* This program demonstrates double buffering for
* flicker-free animation. The left and middle mouse
* buttons start and stop the spinning motion of the square.
*/
#include <stdlib.h>
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/glut.h>
#endif
#include <math.h>
#define DEGREES_TO_RADIANS 3.14159/180.0
static GLfloat spin = 0.0;
GLfloat x, y;
int singleb, doubleb;
void square()
{
glBegin(GL_QUADS);
glVertex2f(x,y);
glVertex2f(-y,x);
glVertex2f(-x,-y);
glVertex2f(y,-x);
glEnd();
}
void displayd()
{
glClear (GL_COLOR_BUFFER_BIT);
square();
glutSwapBuffers ();
}
void displays()
{
glClear (GL_COLOR_BUFFER_BIT);
square();
glFlush();
}
void spinDisplay (void)
{
spin = spin + 2.0;
if (spin > 360.0) spin = spin - 360.0;
x= 25.0*cos(DEGREES_TO_RADIANS * spin);
y= 25.0*sin(DEGREES_TO_RADIANS * spin);
glutSetWindow(singleb);
glutPostRedisplay();
glutSetWindow(doubleb);
glutPostRedisplay();
}
void myinit ()
{
glClearColor (0.0, 0.0, 0.0, 1.0);
glColor3f (1.0, 1.0, 1.0);
glShadeModel (GL_FLAT);
}
void mouse(int btn, int state, int x, int y)
{
if(btn==GLUT_LEFT_BUTTON && state==GLUT_DOWN) glutIdleFunc(spinDisplay);
if(btn==GLUT_MIDDLE_BUTTON && state==GLUT_DOWN) glutIdleFunc(NULL);
}
void myReshape(int w, int h)
{
glViewport(0, 0, w, h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
if (w <= h)
glOrtho (-50.0, 50.0, -50.0*(GLfloat)h/(GLfloat)w,
50.0*(GLfloat)h/(GLfloat)w, -1.0, 1.0);
else
glOrtho (-50.0*(GLfloat)w/(GLfloat)h,
50.0*(GLfloat)w/(GLfloat)h, -50.0, 50.0, -1.0, 1.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity ();
}
/* Main Loop
* Open window with initial window size, title bar,
* RGBA display mode, and handle input events.
*/
int main(int argc, char** argv)
{
glutInit(&argc,argv);
glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB);
singleb=glutCreateWindow("single buffered");
myinit ();
glutDisplayFunc(displays);
glutReshapeFunc (myReshape);
glutIdleFunc (spinDisplay);
glutMouseFunc (mouse);
glutInitDisplayMode (GLUT_DOUBLE | GLUT_RGB);
glutInitWindowPosition(500,0);
doubleb=glutCreateWindow("double buffered");
myinit ();
glutDisplayFunc(displayd);
glutReshapeFunc (myReshape);
glutIdleFunc (spinDisplay);
glutMouseFunc (mouse);
glutMainLoop();
}