Let’s break down what happens when you double-click this file:
FPS Display: The frame rate is displayed in the window's title bar (e.g., "wglgears - 1452 frames in 5.0 seconds = 290.4 FPS").
Termination: The user closes the window or presses Esc, and the program releases the OpenGL context.
The code is intentionally inefficient by modern standards—it does not use vertex buffer objects (VBOs) or shaders. It relies on the "immediate mode" (glBegin/glEnd), which makes it a pure test of your GPU's legacy OpenGL pipeline.
University courses in computer graphics often provide wglgears.exe to students as a base example of OpenGL animation on Windows.
Sign up for our newsletter!
Keep up to date with all our latest news, offers and events.
Thanks for subscribing!
The new legislation will usher in the most comprehensive overhaul of Irish company law in over 50 years and we will provide you with a detailed synopsis of the highlights and notable changes that are to be introduced.
Pat Doyle ACIS, Corporate Law & Company Secretarial Practice
A concise guide to the practical measures that Accounting Firms need to take from a tax perspective in adhering to FRS102.This will link up and follow on smoothly from the earlier presentation on the Accounting implications of FRS 102 covered by previous speakers.
The Statement of Recommended Practice applies to Charities preparing their accounts in accordance with the Financial Reporting Standard applicable in the UK and ROI (FRS 102) - effective date January 2015.
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device. We use strictly necessary cookies to ensure the correct functioning of our websites, and other cookies to enhance site navigation and allow us to anonymously analyse site usage. Cookies Policy
Let’s break down what happens when you double-click this file:
FPS Display: The frame rate is displayed in the window's title bar (e.g., "wglgears - 1452 frames in 5.0 seconds = 290.4 FPS").
Termination: The user closes the window or presses Esc, and the program releases the OpenGL context.
The code is intentionally inefficient by modern standards—it does not use vertex buffer objects (VBOs) or shaders. It relies on the "immediate mode" (glBegin/glEnd), which makes it a pure test of your GPU's legacy OpenGL pipeline.