Dobrý den, tento kód způsobí tuto chybu:
Unhandled exception at 0x000000013F241026 in DirectX 11.exe: 0xC0000005: Access violation reading location 0x0000000000000000
Používám VS2012 a directxtutorial.com
IDXGISwapChain* swapchain;
ID3D11Device* dev;
ID3D11DeviceContext* devcon;
ID3D11RenderTargetView *backbuffer;
void InitD3D(HWND hWnd)
{
ID3D11Texture2D *pBackBuffer;
//třetí parametr způsobí chybu
swapchain->GetBuffer(0,__uuidof(ID3D11Texture2D),(LPVOID*)&pBackBuffer);
/*
další kód
*/
}