14 V(CreateDXGIFactory(IID_IDXGIFactory, reinterpret_cast<void**>(&
g_pDXGIFactory)));
34 for (UINT i = 0; i <
screens.size(); i++)
43 for (UINT j = 0; j <
screens.at(i).pages.size(); j++)
52 for (UINT i = 0; i <
screens.size(); i++)
57 sprintf_s(msg, 99,
"Viewport::Initialize Screen %s (%i) not associated with an active window, removing...",
screens.at(i).name.c_str(), i);
67 DXUT_BeginPerfEvent(DXUT_PERFEVENTCOLOR, L
"Viewport Render Loop");
68 for (UINT i = 0; i <
screens.size(); i++)
75 DXUT_BeginPerfEvent(DXUT_PERFEVENTCOLOR, L
"Viewport Present Loop");
76 for (UINT i = 0; i <
screens.size(); i++)
95 for (UINT i = 0;; i++)
101 return E_OUTOFMEMORY;
106 if (DXGI_ERROR_NOT_FOUND == hr)
108 SAFE_DELETE(pAdapterObj);
114 SAFE_DELETE(pAdapterObj);
119 DXGI_ADAPTER_DESC AdapterDesc;
123 SAFE_DELETE(pAdapterObj);
131 SAFE_DELETE(pAdapterObj);
135 size_t mbAvail = AdapterDesc.DedicatedVideoMemory / 1048576;
140 sprintf_s(msg, 199,
"Viewport::EnumerateAdapter %i GetAvailableTextureMem: %i MB", i, mbAvail);
161 for (UINT i = 0;; i++)
163 IDXGIOutput* pOutput;
164 hr = pAdapterObj->
pDXGIAdapter->EnumOutputs(i, &pOutput);
165 if (DXGI_ERROR_NOT_FOUND == hr)
174 DXGI_OUTPUT_DESC OutputDesc;
175 hr = pOutput->GetDesc(&OutputDesc);
198 WCHAR szExePath[MAX_PATH];
199 GetModuleFileName(
nullptr, szExePath, MAX_PATH);
200 HICON hIcon = ExtractIcon(hInstance, szExePath, 0);
205 g_WindowClass.hbrBackground =
static_cast<HBRUSH
>(GetStockObject(BLACK_BRUSH));
214 DWORD error = GetLastError();
216 if (ERROR_CLASS_ALREADY_EXISTS != error)
238 DXGI_OUTPUT_DESC OutputDesc;
239 pOutput->GetDesc(&OutputDesc);
240 int X = OutputDesc.DesktopCoordinates.left;
241 int Y = OutputDesc.DesktopCoordinates.top;
242 int Width = OutputDesc.DesktopCoordinates.right - X;
243 int Height = OutputDesc.DesktopCoordinates.bottom - Y;
251 sprintf_s(msg, 199,
"Viewport::CreateMonitorWindows (adapter %i, window %i) %S (%ix%i)", a, o, OutputDesc.DeviceName, Width, Height);
266 if (NULL == pWindow->
hWnd)
268 SAFE_DELETE(pWindow);
273 ShowWindow(pWindow->
hWnd, SW_SHOWDEFAULT);
277 pWindow->
Width = Width;
313 IDXGIAdapter* pAdapter =
nullptr;
314 if (D3D10_DRIVER_TYPE_HARDWARE == DriverType)
321 UINT CreateFlags = D3DCREATE_HARDWARE_VERTEXPROCESSING | D3DCREATE_PUREDEVICE;
324 V_RETURN(D3D10CreateDevice(pAdapter, DriverType, NULL, CreateFlags, D3D10_SDK_VERSION, &pDevice->
pd3dDevice));
360 IDXGIDevice* pDXGIDevice =
nullptr;
361 V_RETURN(pWindow->
pDevice->
pd3dDevice->QueryInterface(IID_IDXGIDevice, reinterpret_cast<void**>(&pDXGIDevice)));
364 DXGI_SWAP_CHAIN_DESC SwapChainDesc;
365 ZeroMemory(&SwapChainDesc,
sizeof(DXGI_SWAP_CHAIN_DESC));
366 SwapChainDesc.BufferDesc.Width = pWindow->
Width;
367 SwapChainDesc.BufferDesc.Height = pWindow->
Height;
368 SwapChainDesc.BufferDesc.RefreshRate.Numerator = 60;
369 SwapChainDesc.BufferDesc.RefreshRate.Denominator = 1;
370 SwapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
371 SwapChainDesc.BufferDesc.ScanlineOrdering = DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED;
372 SwapChainDesc.BufferDesc.Scaling = DXGI_MODE_SCALING_UNSPECIFIED;
373 SwapChainDesc.SampleDesc.Count = 1;
374 SwapChainDesc.SampleDesc.Quality = 0;
375 SwapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
376 SwapChainDesc.BufferCount = 3;
377 SwapChainDesc.OutputWindow = pWindow->
hWnd;
379 SwapChainDesc.SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
380 SwapChainDesc.Flags = 0;
383 pDXGIDevice->Release();
397 logger->
Log(
"Viewport::OnD3D10CreateDevice");
399 for (UINT i = 0; i <
fonts.size(); i++)
421 ID3D10Texture2D* pBackBuffer =
nullptr;
422 hr = pWindow->
pSwapChain->GetBuffer(0, IID_ID3D10Texture2D, reinterpret_cast<void**>(&pBackBuffer));
427 D3D10_TEXTURE2D_DESC BBDesc;
428 pBackBuffer->GetDesc(&BBDesc);
431 D3D10_RENDER_TARGET_VIEW_DESC RTVDesc;
432 RTVDesc.Format = BBDesc.Format;
433 RTVDesc.ViewDimension = D3D10_RTV_DIMENSION_TEXTURE2D;
434 RTVDesc.Texture2D.MipSlice = 0;
436 pBackBuffer->Release();
437 pBackBuffer =
nullptr;
442 ID3D10Texture2D* pDepthStencil =
nullptr;
443 D3D10_TEXTURE2D_DESC descDepth;
444 descDepth.Width = pWindow->
Width;
445 descDepth.Height = pWindow->
Height;
446 descDepth.MipLevels = 1;
447 descDepth.ArraySize = 1;
448 descDepth.Format = DXGI_FORMAT_D16_UNORM;
449 descDepth.SampleDesc.Count = 1;
450 descDepth.SampleDesc.Quality = 0;
451 descDepth.Usage = D3D10_USAGE_DEFAULT;
452 descDepth.BindFlags = D3D10_BIND_DEPTH_STENCIL;
453 descDepth.CPUAccessFlags = 0;
454 descDepth.MiscFlags = 0;
455 hr = pWindow->
pDevice->
pd3dDevice->CreateTexture2D(&descDepth,
nullptr, &pDepthStencil);
460 D3D10_DEPTH_STENCIL_VIEW_DESC descDSV;
461 descDSV.Format = descDepth.Format;
462 descDSV.ViewDimension = D3D10_DSV_DIMENSION_TEXTURE2D;
463 descDSV.Texture2D.MipSlice = 0;
465 SAFE_RELEASE(pDepthStencil);
489 pWindow->
pSwapChain->SetFullscreenState(
false,
nullptr);
496 DestroyWindow(pWindow->
hWnd);
500 SAFE_DELETE(pWindow);
505 sprintf_s(msg, 99,
"Viewport::DeviceCleanup DeviceArray Size %i",
g_DeviceArray.GetSize());
513 sprintf_s(msg, 99,
"Viewport::DeviceCleanup Calling Destroy: %i", d);
518 SAFE_DELETE(pDevice);
521 for (UINT i = 0; i <
fonts.size(); i++)
523 fonts.at(i).DeviceCleanup();
536 for (
unsigned i = 0; i <
screens.size(); i++)
538 for (
unsigned j = 0; j <
screens.at(i).pages.size(); j++)
540 screens.at(i).pages.at(j).Destroy();
557 SAFE_RELEASE(pOutput);
562 SAFE_DELETE(pAdapterObj);
572 std::vector<HWND> hwnds;
CGrowableArray< WINDOW_OBJECT * > g_WindowObjects
std::vector< HWND > GetWindowHandles() const
CGrowableArray< ADAPTER_OBJECT * > g_AdapterArray
void Render(float fElapsed)
CGrowableArray< IDXGIOutput * > DXGIOutputArray
ID3D10DepthStencilView * pDepthStencilView
HRESULT CreateSwapChainPerOutput() const
IDXGIAdapter * pDXGIAdapter
void Initialize(HINSTANCE)
static HRESULT CreateViewsForWindowObject(WINDOW_OBJECT *pWindow)
std::vector< Font > fonts
ID3D10Device * pd3dDevice
std::vector< Screen > screens
DXGI_ADAPTER_DESC AdapterDesc
HRESULT CreateMonitorWindows()
void Render(float fElapsed)
IDXGISwapChain * pSwapChain
HRESULT CreateDevicePerAdapter(D3D10_DRIVER_TYPE DriverType)
void OnD3D10CreateDevice(Logger *pLogger, ID3D10Device *pDevice)
HRESULT SetWindowAssociation() const
ID3D10RenderTargetView * pRenderTargetView
void Log(const char *msg, Level level=Info, int errorCode=0)
These have to be in this order.
static HRESULT EnumerateOutputs(ADAPTER_OBJECT *pAdapterObj)
void Initialize(Bus *prmBus, Logger *prmLogger, DEVICE_OBJECT *prmpDevice, int screenWidth, int screenHeight, std::vector< Font > *fonts, bool flip)
HRESULT OnD3D10CreateDevice(DEVICE_OBJECT *pDevice)
IDXGIFactory * g_pDXGIFactory
DXGI_OUTPUT_DESC OutputDesc
HRESULT CreateWindowClass(HINSTANCE hInstance)
CGrowableArray< DEVICE_OBJECT * > g_DeviceArray
HRESULT EnumerateAdapters()