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;
}