views:

26

answers:

1

So I've written and compiled an HLSL pixel shader with Shazzam, placed the resulting .ps file in my project, and am trying to instantiate it. No matter what URI I put, Blend tells me that the resource can't be found whenever I try to view any xaml designer, and Visual Studio just shows me a blank page, both in design view and if I try to run the application.

This is a Silverlight 4 SketchFlow project, in Blend 4 RC and Visual Studio 2010.

I've tried both Resource and EmbeddedResource as the Build Action for the .ps file, neither make any difference (I'm pretty sure it's supposed to be set to Resource).

I've tried the following URI formats:

"ShaderFileName.ps"
"/ShaderFileName.ps"
"AssemblyName;component/ShaderFileName.ps"
"/AssemblyName;component/ShaderFileName.ps"

I also tried moving the shader file from the Screens assembly to the root assembly (that's how SketchFlow projects are created) and that didn't help either.

Anyone have any thoughts?

A: 

BuildAction=Resource is right and the format is: "AssemblyName;component/ShaderFileName.ps" Don't forget to add the relative path if the shader .ps file is located inside a folder. Also check the spelling.

Rene Schulte
Unfortunately, that's one of the possibilities I've tried and the .ps is in the root :(
Grank