Hey guys, I was having trouble downsampling a texture for post processing effect, apparently the downsampled texture is not getting any output(checked form PIX).
The code is just basic 4x4 downsampling algorithm
here is the code:
V(gd3dDev->BeginScene());
//Downsample to 1/4 x 1/4 the size of the original HDR image
UINT w = md3dpp.BackBufferWidth;
UINT h = md3dpp.BackBufferHeight;
D3DVIEWPORT9 VP,OriginalVP;
VP.Width = w/4;
VP.Height = h/4;
VP.X = 0;
VP.Y = 0;
VP.MinZ = 0.0f;
VP.MaxZ = 1.0f;
V(gd3dDev->GetViewport(&OriginalVP));
V(gd3dDev->SetViewport(&VP));
LPDIRECT3DSURFACE9 OriginalRT = 0;
V(gd3dDev->GetRenderTarget(0, &OriginalRT));
V(D3DXCreateTexture(gd3dDev, w/4, h/4, 1, D3DUSAGE_RENDERTARGET, D3DFMT_A8B8G8R8, D3DPOOL_DEFAULT, &BloomTex));
V(BloomTex[3]->GetSurfaceLevel(0, &BloomSurf));
V(gd3dDev->ColorFill(BloomSurf, 0, 0x00000000));
D3DXVECTOR2 DownSampleOffsets[16];
D3DSURFACE_DESC Desc;
V(BloomTex->GetLevelDesc(0, &Desc));
float tu = 1.0f / Desc.Width;
float tv = 1.0f / Desc.Height;
int index = 0;
for(float x = 0.0f; x < 4.0f; x++)
for(float y = 0.0f; y < 4.0f; y++)
{
DownSampleOffsets[index].x = (x-1.5f) * tu;
DownSampleOffsets[index].y = (y-1.5f) * tv;
index++;
}
V(gd3dDev->SetRenderTarget(0, BloomSurf));
V(HDR_FX->SetTechnique("DownSample4x4Tech"));
V(HDR_FX->SetTexture("ToBeDownSampledTexture", Full_RTS->GetTex()));
V(HDR_FX->SetValue("DownSampleOffsets", DownSampleOffsets, sizeof(DownSampleOffsets)));
UINT NumPasses = 0;
V(HDR_FX->Begin(&NumPasses, 0));
V(HDR_FX->BeginPass(0));
V(gd3dDev->SetRenderState(D3DRS_ZENABLE, FALSE));
V(gd3dDev->SetFVF(D3DFVF_SCREENVERTEX));
V(gd3dDev->SetStreamSource(0, mQuadVB, 0, sizeof(ScreenVertex)));
V(gd3dDev->DrawPrimitive(D3DPT_TRIANGLESTRIP, 0, 2));
V(gd3dDev->SetRenderState(D3DRS_ZENABLE, TRUE));
V(HDR_FX->EndPass());
V(HDR_FX->End());
V(gd3dDev->SetRenderTarget(0, OriginalRT));
V(gd3dDev->EndScene());
Any help will be widely appreciated Thanks