Example #1
0
        private void ApplyWatermarks(MixCastCamera cam)
        {
            if (brandingBlit != null)
            {
                brandingBlit.ApplyToFrame(cam);
            }

            if (logoBlit != null && (MixCast.SecureSettings.IsFreeLicense || MixCast.Desktop.ShowingUI))
            {
                logoBlit.ApplyToFrame(cam);
            }
        }
Example #2
0
        protected void CompleteFrame()
        {
            if (!IsPluggedIn || IsInUseElsewhere)
            {
                noCamBlit.ApplyToFrame(this);
            }

            Current = null;

            if (FrameEnded != null)
            {
                FrameEnded(this);
            }

            Graphics.SetRenderTarget(null);
        }