10 #include <boost/program_options.hpp>
12 namespace po = boost::program_options;
14 // include proper GL connector
17 #include "glxbackend.h"
18 GLBackend *createGLBackend()
20 return new GLXBackend();
22 #elif defined(USE_EGL)
23 #include "eglbackend.h"
24 GLBackend *createGLBackend()
26 return new EGLBackend();
29 #error "No GL window type selected"
33 const GLfloat boxWidth = 0.045f;
34 const GLfloat boxSpeed = 1.25f; // per second
37 const int numProfilerStates = 5;
38 const char *profilerStateNames[numProfilerStates] = { "Pre-Render", "Drawing", "Swapping", "Post-Render", "Outside renderer"};
41 static double getTime()
44 clock_gettime(CLOCK_MONOTONIC, &tp);
45 return tp.tv_sec + 1e-9 * tp.tv_nsec;
48 static void drawRect(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
50 glVertex2f(x1, y1); glVertex2f(x2, y1); glVertex2f(x2, y2); glVertex2f(x1, y2);
54 class TearTestWindow : public GLWindow {
56 TearTestWindow() : GLWindow(XOpenDisplay(0), createGLBackend()), boxPos(0), boxDirection(1)
59 void setSwapInterval(int i) {
60 getBackend()->setSwapInterval(i);
66 // initialize GL proper
67 glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
68 glDisable(GL_DEPTH_TEST);
70 lastFrame = getTime();
71 // initailize profiler
73 memset(stateTime, 0, sizeof(stateTime));
75 lastDisplay = lastProfile = getTime();
78 virtual void resizeGL(unsigned int width, unsigned int height)
80 /* prevent divide-by-zero */
83 glViewport(0, 0, width, height);
84 glMatrixMode(GL_PROJECTION);
86 glOrtho (0, 1, 1, 0, 0, 1);
87 glMatrixMode(GL_MODELVIEW);
88 glClear(GL_COLOR_BUFFER_BIT);
92 void profilerTick(int nextState)
94 assert (nextState >= 0 && nextState < numProfilerStates);
95 double time = getTime();
97 stateTime[curState] += time-lastProfile;
101 const double elapsed = time-lastDisplay;
103 printf("%.1f fps, time spent: ", framect/elapsed);
104 for (int i = 0; i < numProfilerStates; ++i) {
105 if (i != 0) printf(", ");
106 printf("%s %.1f%%", profilerStateNames[i], stateTime[i]/elapsed*100);
111 memset(stateTime, 0, sizeof(stateTime));
118 double time = getTime();
120 double passedTime = time-lastFrame;
121 boxPos += boxSpeed*passedTime*boxDirection;
122 while (boxPos < 0 || boxPos+boxWidth > 1) { // wrapover
125 boxDirection = -boxDirection;
128 boxPos = 1.0-boxWidth-(boxPos+boxWidth-1.0);
129 boxDirection = -boxDirection;
136 //glClear(GL_COLOR_BUFFER_BIT);
139 glColor3f(0.0f, 0.0f, 0.0f);
140 drawRect(0, 0, 1, 1);
141 glColor3f(0.8f, 1.0f, 0.75f);
142 drawRect(boxPos, 0, boxPos+boxWidth, 1);
146 getBackend()->swapBuffers();
147 // glDrawBuffer(GL_FRONT);
150 //foreach (const QRect &r, region.rects()) {
151 // convert to OpenGL coordinates
152 //int y = displayHeight() - 0 - r.height();
153 // glBitmap(0, 0, 0, 0, 0 - xpos, 0 - ypos, NULL); // not glRasterPos2f, see glxbackend.cpp
156 // glCopyPixels(0, 0, getWidth(), getHeight(), GL_COLOR);
158 // glBitmap(0, 0, 0, 0, -xpos, -ypos, NULL); // move position back to 0,0
159 // glDrawBuffer(GL_BACK);
166 virtual void handleKeyPress(KeySym key)
169 case XK_Escape: close(); break;
170 case XK_F1: setFullscreen(!getFullscreen()); break;
177 GLfloat boxPos, boxDirection;
179 double lastDisplay, lastProfile;
180 int framect, curState;
181 double stateTime[numProfilerStates];
186 int main(int argc, char ** argv)
188 // program options handling
189 po::options_description desc("Allowed options");
191 ("help,h", "produce help message")
192 ("swap-interval,i", po::value<int>(), "set swap interval")
194 po::variables_map vm;
195 po::store(po::parse_command_line(argc, argv, desc), vm);
198 if (vm.count("help")) {
199 std::cout << desc << "\n";
206 if (vm.count("swap-interval"))
207 w.setSwapInterval(vm["swap-interval"].as<int>());