Exemplo n.º 1
0
        public void DefaultFrameCapturedHandler()
        {
            var error = RGB.DrawFrame(_handle);

            if (error != RGBERROR.NO_ERROR)
            {
                throw new RgbEasyException(error);
            }
        }
Exemplo n.º 2
0
        public void DrawDefaultFrame()
        {
            AssertNotDisposed();
            var error = RGB.DrawFrame(_handle);

            if (error != RGBERROR.NO_ERROR)
            {
                throw new RgbEasyException(error);
            }
        }