I fear what I'm asking isn't possible but I'm going to ask anyway.
I'm trying to write a very simple shader that adds random sparkle to applicable objects. The way I'd like to do this is by adding a random shade of white (R = G = B) to the pixel value within the pixel shader.
It seems that noise() doesn't work the way I hope it does:
float multiplier = noise(float3(Input.Position[0], Input.Position[1], time));
gives me "error X4532: cannot map expression to pixel shader instruction set" referring to the call to noise().
Since I don't know of a way to retain a number between calls to the shader, I don't think I can just write a simple random number producing function based on a seed passed in before rendering.
Is there a way to produce a random number from inside a pixel shader? If there is a way, how?