I have a D3D9 windowed application. When I create the device I do not specify any dimensions for the backbuffer. For example:
mPresentParams.BackBufferWidth = 0;
mPresentParams.BackBufferHeight = 0;
Now I wonder if I have to do anything when I resize the window? Do I have to reset() the device if the window is resized?