コード例 #1
0
ファイル: BandedSwirlEffect.cs プロジェクト: WildGenie/863
 /// <summary>
 /// Creates a PixelShader by loading the bytecode.
 /// </summary>
 static BandedSwirlEffect()
 {
     pixelShader           = new PixelShader();
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/BandedSwirl.ps");
 }
コード例 #2
0
ファイル: ColorToneEffect.cs プロジェクト: WildGenie/863
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static ColorToneEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/ColorTone.ps");
 }
コード例 #3
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static MonochromeEffect()
 {
     pixelShader           = new PixelShader();
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/Monochrome.ps");
 }
コード例 #4
0
 /// <summary>
 /// Statict Constructor
 /// </summary>
 static LogoDisplacerEffect()
 {
     _pixelShader.UriSource = Global.MakePackUri("ShaderSource/LogoDisplacerEffect.ps");
 }
コード例 #5
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static DirectionalBlurEffect()
 {
     pixelShader           = new PixelShader();
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/DirectionalBlur.ps");
 }
コード例 #6
0
ファイル: MagnifyEffect.cs プロジェクト: WildGenie/863
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static MagnifyEffect()
 {
     pixelShader           = new PixelShader();
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/Magnify.ps");
 }
コード例 #7
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static BrightExtractEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/BrightExtract.ps");
 }
コード例 #8
0
ファイル: ZoomBlurEffect.cs プロジェクト: WildGenie/863
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static ZoomBlurEffect()
 {
     pixelShader           = new PixelShader();
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/ZoomBlur.ps");
 }
コード例 #9
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static GrowablePoissonDiskEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/GrowablePoissonDisk.ps");
 }
コード例 #10
0
 static SkinBloodEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/HatchingEffect.ps");
 }
コード例 #11
0
ファイル: PixelateEffect.cs プロジェクト: toiiggww/WPFFx
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static PixelateEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/Pixelate.ps");
 }
コード例 #12
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static LightStreakEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/LightStreak.ps");
 }
コード例 #13
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static ContrastAdjustEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/ContrastAdjust.ps");
 }
コード例 #14
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static EmbossedEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/Embossed.ps");
 }
コード例 #15
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static SharpenEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/Sharpen.ps");
 }
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static ColorKeyAlphaEffect()
 {
     pixelShader           = new PixelShader();
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/ColorKeyAlpha.ps");
 }
コード例 #17
0
ファイル: RippleEffect.cs プロジェクト: toiiggww/WPFFx
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static RippleEffect()
 {
     pixelShader           = new PixelShader();
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/Ripple.ps");
 }
コード例 #18
0
ファイル: GloomEffect.cs プロジェクト: WildGenie/863
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static GloomEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/Gloom.ps");
 }
コード例 #19
0
 /// <summary>
 /// Creates an instance of the shader from the included pixel shader.
 /// </summary>
 static ToneMappingEffect()
 {
     pixelShader.UriSource = Global.MakePackUri("ShaderSource/ToneMapping.ps");
 }