DrawFrame() public method

public DrawFrame ( ) : void
return void
Esempio n. 1
0
        public static void UpdateWindowsFrame()
        {
            int j = exitingFormList.Count;

            for (int i = 0; i < j; ++i)
            {
                /* Render here */
                /* Swap front and back buffers */
                GlFwForm form = exitingFormList[i];
                form.DrawFrame();
                Glfw.SwapBuffers(form.GlfwWindowPtr);
            }
        }