I have this strange problem with the sampler in the pixel shaders. When I sample from a sampler into an empty float4 variable I always get black/transparent color back. So if I use this I get a black screen:

float4 PixelShaderFunction(float2 TextureCoordinate : TEXCOORD0) : COLOR0
    {
        float2 uv = TextureCoordinate;          
        float4 pixelColor = tex2D(implicitInputSampler, uv);

        //contrast
        pixelColor.rgb = ((pixelColor.rgb - 0.5f) * max(Contrast, 0)) + 0.5f;

        //brightness
        pixelColor.rgb = pixelColor.rgb + (Brightness - 1);

        // return final pixel color
        return pixelColor;
    }

I I use this instead it works ok:

float4 PixelShaderFunction(float2 TextureCoordinate : TEXCOORD0) : COLOR0
    {
        float2 uv = TextureCoordinate;          
        float4 pixelColor = {0,0,0,1};
        pixelColor += tex2D(implicitInputSampler, uv);

        //contrast
        pixelColor.rgb = ((pixelColor.rgb - 0.5f) * max(Contrast, 0)) + 0.5f;

        //brightness
        pixelColor.rgb = pixelColor.rgb + (Brightness - 1);

        // return final pixel color
        return pixelColor;
    }

This happens only on my dev environment at home on a AMD 4850 GPU. When I try it on some nVidias or AMD5850 it works in any case...

What is the reason for this? Did I miss some device initialization?

Cheers!

link|improve this question

77% accept rate
In the first case you are reading the output alpha from the texture and returning it. Does your texture contain alpha values? – JohnB Apr 4 '11 at 9:19
the texture is declared as A8R8G8B8, and i'm using stretchrectangle from the surface that VMR9 sends to the image compositor. It could be that the A in the VMR is alway 0 ? It's strange that this comes different with different graphic cards and OSes :/ – Marino Šimić Apr 6 '11 at 16:06
feedback

1 Answer

up vote 0 down vote accepted

It seems that the A in the pixel shader source texture indeed is 0...

The texture is declared as A8R8G8B8 and device.StretchRectangle is used to fill the texture.

This method works differently depending on hardware :/

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.