I am a beginner of DirectX 11, and following the book Beginning DirectX 11, in chapter 2, there is a code for creating a buffer using the following code:
DXGI_SWAP_CHAIN_DESC swapChainDesc;
ZeroMemory( &swapChainDesc, sizeof( swapChainDesc ) );
swapChainDesc.BufferCount = 1;
swapChainDesc.BufferDesc.Width = width;
swapChainDesc.BufferDesc.Height = height;
swapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
swapChainDesc.BufferDesc.RefreshRate.Numerator = 60;
swapChainDesc.BufferDesc.RefreshRate.Denominator = 1;
swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
swapChainDesc.OutputWindow = hwnd;
swapChainDesc.Windowed = true;
swapChainDesc.SampleDesc.Count = 1;
swapChainDesc.SampleDesc.Quality = 0;
My question is that in the description of swap chain, apparently there is space for only one buffer, as there is only one BufferDesc (DXGI_MODE_DESC struct). So if BufferCount is set to 2 or more, how is the second buffer registered? Is it using another DXGI_SWAP_CHAIN_DESC? Please post some example code.
Also BufferCount has type UNIT, which means more than two buffers can be added. While 2 buffers are used in double buffering technique, in which one buffer is used to draw on, and another buffer is used to display on the scene, and buffers are swapped. What is the use, advantages of more than two buffers?