Constant Buffer update

Started by
6 comments, last by Ninja2008 12 years, 2 months ago
Hi

I have a constant buffer that I'm updating each frame, it contains one matrix and one float4, the problem seems that the matrix part is updating
while the color part is getting all zeros no matter anything...

my structure oout of shader (i.e. in the source code) is this:

struct BufferInfo
{
XMFLOAT4 color;
XMMATRIX mat;
};

constant buffer declaration is this:
D3D11_BUFFER_DESC constDesc;
ZeroMemory(&constDesc,sizeof(constDesc));
constDesc.BindFlags=D3D11_BIND_CONSTANT_BUFFER;
constDesc.ByteWidth=sizeof(BufferInfo);
constDesc.Usage =D3D11_USAGE_DEFAULT;

d3dResult=d3dDevice->CreateBuffer(&constDesc,0,&mvpcCB);

the draw/update part:
BufferInfo bufferInfo01;

XMMATRIX world=sprite->GetWorldMatrix();
XMMATRIX mvp=XMMatrixMultiply(world, vpMatrix);
mvp=XMMatrixTranspose(mvp);

bufferInfo01.mat = mvp;
bufferInfo01.color = color;
d3dContext->UpdateSubresource(mvpcCB,0,0,&bufferInfo01,0,0);
d3dContext->VSSetConstantBuffers(0,1,&mvpcCB);

--------------------
the shader part:

cbuffer cbChangesPerFrame : register(b0)
{
float4 col_;
matrix mvp_;
};


the pixel shader:
float4 PS_Main(PS_Input frag) : SV_TARGET
{
return colorMap_.Sample(colorSampler_,frag.tex0)*float4(col_[0],col_[1],col_[2],1.0f);
}

if I don't use (return colorMap_.Sample(colorSampler_,frag.tex0)*float4(col_[0],col_[1],col_[2],1.0f);) and use this:
return colorMap_.Sample(colorSampler_,frag.tex0)*col_;

the text (since this is a text renderer, it renders text) won't appear (its alpha will be zero) and it will be black since RGB are all zeroes..

seems that only the matrix part is updates, the color part is updates...any suggestions why is this weird thing happening??

Thanks
Advertisement
I mean the text is black in the first case (return colorMap_.Sample(colorSampler_,frag.tex0)*float4(col_[0],col_[1],col_[2],1.0f);)
and it will not appear in the second case (return colorMap_.Sample(colorSampler_,frag.tex0)*float4(col_[0],col_[1],col_[2],1.0f);)
Are you initializing the variable "color" on the application side correctly?
Check with pix / nsight (or any other similar tool) if all of your buffer contents match your expectations.
Please update pixel shader's constants.

Please update pixel shader's constants.


Ah yes, good catch I missed that on my first read too.

OP; as Kubera points out you are only updating the constant block for the Vertex Shader and NOT the pixel shader which is where you are trying to read the value from. You have to set the block for each stage of the pipeline you want the values to be updated in.
Thank you, @[color="#284b72"]phantom
Hey guys, thank for the help, as you said, I must use d3dContext->PSSetConstantBuffers()

Thanks for the great help. Very Appreciated.

^_^

This topic is closed to new replies.

Advertisement