Silverlight Custom Bitmap Effects - Getting started
Written by Administrator   
Monday, 21 June 2010
Article Index
Silverlight Custom Bitmap Effects - Getting started
Compiling a shader
The custom effect

Banner

As well as creating the compiled .ps file we also have to find a way to make it available to the running Silverlight application.

The .ps file has to be downloaded either as part of the Silverlight application DLL or within the XAP file. Alternatively you could make the file available on the server and arrange to download it separately on demand. In most cases it's simpler to include it in the DLL or the XAP file it is generally small.

To do this first include the .ps file in the project by right clicking on it and select "include in project". Next select the file and in the Properties window  and set its Build Action to Resource which will ensure it is included in the DLL or to Content which will ensure it is included in the XAP file. In the rest of the example it is assumed that Action is set to Resource and the .ps file is included in the DLL.

file

The custom effect

Now that we have the HLSL pixel shader compiled correctly and stored as shader1.ps in the shader directory we can write the C# to make use of it.

First we need to add:

using System.Windows.Media.Effects;

at the start of the project.

To create a custom effect you have to create a derived class from ShaderEffect:

public class BlankEffect : ShaderEffect
{

The very minimum that this has to do is to create an instance of PixelShader that wraps your shader code and store a reference to this in the new classes PixelShader property. This is most easily achieved in the constructor:

 public BlankEffect()
{
PixelShader pixelShader =
new PixelShader();
Uri uri = new Uri(
@"/MyShader;
component/shader/shader1.ps",
 UriKind.Relative);
pixelShader.UriSource = uri;
this.PixelShader = pixelShader;
}
}

This first creates an instance of PixelShader, sets its UriSource property to the location of the shader1.ps file and then sets the BlankEffect PixelShader property to reference the new instance. Notice that the .ps file is loaded from the local Silverlight DLL. In this case the name of the project is MyShader but you should change this to whatever the project is called.

That's all you have to do to create a custom effect.

Now we can try it out. Add a button to the form and change its Click event handler to read:

private void button1_Click(
object sender, RoutedEventArgs e)
{
button1.Effect = new BlankEffect();
}

If you now run the program and click on the button

 

redblock1

 

the result should be a red rectangle where the button should be displayed.

 

redblock2

 

As admitted at the start of this articl,e this isn't exactly impressive but, if you think about the complexity of the steps we needed to take to get to this stage, the fact that it all works is very impressive!

Remember if you want to make any changes to the shader you have to edit the .fx file, save it, compile it to generate the .ps file and then run the project again.

Now with the mechanics of editing, compiling and using an HLSL program we can move on and learn more about how pixel shaders work and more about writing HLSL.

We will have  to modify the new C# class to take account and make use of the features we introduce, but the basic ideas and procedures remain unchanged.

How to write a more complex shader and generally make progress with HLSL is described in the next article.

If you would like to know when the next article on Silverlight HLSL is published register with iProgrammer or follow us on Twitter.

Banner

<ASIN:0470534044 >

<ASIN:1430225491 >

<ASIN:1430219505 >

<ASIN:1847199763 >

<ASIN:1430230185 >



Last Updated ( Monday, 26 July 2010 )