I have one question regarding to the texture format and render target format.
I would like to create a texture resource to save the back buffer of the render target to this texture. Is it necessary to set the same value as the render target?
D3D10_TEXTURE2D_DESC textureDesc;
textureDesc.Width = 800;
textureDesc.Height = 600;
textureDesc.MipLevels = 1;
textureDesc.ArraySize = 1;
textureDesc.Format = DXGI_FORMAT_B8G8R8A8_UNORM; <- it it as same as that of render target?
textureDesc.SampleDesc.Count = 1;
textureDesc.Usage = D3D11_USAGE_STAGING;
textureDesc.BindFlags = 0;
textureDesc.CPUAccessFlags = D3D10_WRITE;
textureDesc.MiscFlags = 0;
The reason why I ask this question is when I save the texture to a bmp file, some color which I think is green is missing. I don't know why.
Thanks, Marshall