Home | History | Annotate | Download | only in checks

Lines Matching refs:sd

38     DXGI_SWAP_CHAIN_DESC sd;
39 ZeroMemory( &sd, sizeof( sd ) );
40 sd.BufferCount = 1;
41 sd.BufferDesc.Width = width;
42 sd.BufferDesc.Height = height;
43 sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
44 sd.BufferDesc.RefreshRate.Numerator = 60;
45 sd.BufferDesc.RefreshRate.Denominator = 1;
46 sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
47 sd.OutputWindow = NULL; //g_hWnd;
48 sd.SampleDesc.Count = 1;
49 sd.SampleDesc.Quality = 0;
50 sd.Windowed = TRUE;
56 D3D11_SDK_VERSION, &sd, &g_pSwapChain, &g_pd3dDevice, &g_featureLevel, &g_pImmediateContext);