Exemple #1
0
 public GlowEffect()
     : base(StaticName, StaticImage, null, EffectDirectives.None, true)
 {
     this.blurEffect = new BlurEffect();
     this.bcAdjustment = new BrightnessAndContrastAdjustment();
     this.screenBlendOp = new UserBlendOps.ScreenBlendOp();
 }
Exemple #2
0
        public GlowEffect()
            : base(StaticName, StaticImage, SubmenuNames.Photo, EffectFlags.Configurable)
        {
            this.blurEffect = new GaussianBlurEffect();
            this.blurProps = this.blurEffect.CreatePropertyCollection();

            this.bcAdjustment = new BrightnessAndContrastAdjustment();
            this.bcProps = this.bcAdjustment.CreatePropertyCollection();

            this.screenBlendOp = new UserBlendOps.ScreenBlendOp();
        }