CodeTV.DirectDraw.WaitForVerticalBlank C# (CSharp) Method

WaitForVerticalBlank() public method

public WaitForVerticalBlank ( ) : void
return void
        public void WaitForVerticalBlank()
        {
            if (directDraw != null)
            {
                //int hr = directDraw.WaitForVerticalBlank((int)DDWAITVBFLAGS.BLOCKBEGIN, 0);
                int hr = directDraw.WaitForVerticalBlank((int)DDWAITVBFLAGS.BLOCKBEGIN, 0);
            }
        }