OLD | NEW |
1 // | 1 // |
2 // Book: OpenGL(R) ES 2.0 Programming Guide | 2 // Book: OpenGL(R) ES 2.0 Programming Guide |
3 // Authors: Aaftab Munshi, Dan Ginsburg, Dave Shreiner | 3 // Authors: Aaftab Munshi, Dan Ginsburg, Dave Shreiner |
4 // ISBN-10: 0321502795 | 4 // ISBN-10: 0321502795 |
5 // ISBN-13: 9780321502797 | 5 // ISBN-13: 9780321502797 |
6 // Publisher: Addison-Wesley Professional | 6 // Publisher: Addison-Wesley Professional |
7 // URLs: http://safari.informit.com/9780321563835 | 7 // URLs: http://safari.informit.com/9780321563835 |
8 // http://www.opengles-book.com | 8 // http://www.opengles-book.com |
9 // | 9 // |
10 | 10 |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 } | 174 } |
175 } | 175 } |
176 else | 176 else |
177 SendMessage( esContext->hWnd, WM_PAINT, 0, 0 ); | 177 SendMessage( esContext->hWnd, WM_PAINT, 0, 0 ); |
178 | 178 |
179 // Call update function if registered | 179 // Call update function if registered |
180 if ( esContext->updateFunc != NULL ) | 180 if ( esContext->updateFunc != NULL ) |
181 esContext->updateFunc ( esContext, deltaTime ); | 181 esContext->updateFunc ( esContext, deltaTime ); |
182 } | 182 } |
183 } | 183 } |
OLD | NEW |