I am writing a third party library to allow anybody to write HLSL shaders for specific objects within a game. I have only just begun and have encountered a major problem. After using IDirect3DDevice9::SetPixelShader - the object which is rendered with that pixel shader is not rendered at all, even using the fixed-function pipeline pixel shader (NULL) nothing is seen on the screen. This only happens to anything the game renders and my objects are affected properly by the pixel shader. I truly have no idea where to start on finding out why this is -- Can anybody point me into the right direction as to why the following pixel shader would apparently cause the object to become fully transparent / not be rendered ?

void main(out float4 color : COLOR)
{
    color = 1.0, 1.0, 1.0, 1.0;
}
link|improve this question
1  
What does PIX say? – Paul-Jan Aug 9 '11 at 14:18
@Paul I have never used PIX before, but after your comment I looked into it and found a solution! PIX showed the game's shader in assembly and so I could see the shader version it was compiled under (ps_3_0) -- after using that version for my shader, it worked beautifully; any idea as to why it would not work unless using pixel shader 3.0 ? – Sam Aug 10 '11 at 5:51
Good job figuring that out! About shader models, I'll post as an answer to allow for better formatting. – Paul-Jan Aug 11 '11 at 4:32
feedback

1 Answer

You already figured out (see comments) that you need to set your own pixel shaders to the same 3.0 model als the game's shaders.

According to the MSDN article on Shader Model 3

If you are implementing shaders in hardware, you may not use vs_3_0 or ps_3_0 with any other shader versions, and you may not use either shader type with the fixed function pipeline. These changes make it possible to simplify drivers and the runtime.

In other words, this seems to suggest you cannot mix shader versions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.