123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- #include "pch.h"
- #include "Direct3DBase.h"
- using namespace DirectX;
- using namespace Microsoft::WRL;
- using namespace Windows::UI::Core;
- using namespace Windows::Foundation;
- using namespace Windows::Graphics::Display;
- Direct3DBase::Direct3DBase()
- {
- }
- void Direct3DBase::Initialize(CoreWindow ^ window)
- {
- m_window = window;
- CreateDeviceResources();
- CreateWindowSizeDependentResources();
- }
- void Direct3DBase::HandleDeviceLost()
- {
-
-
- m_windowBounds.Width = 0;
- m_windowBounds.Height = 0;
- m_swapChain = nullptr;
- CreateDeviceResources();
- UpdateForWindowSizeChange();
- }
- void Direct3DBase::CreateDeviceResources()
- {
-
-
-
- UINT creationFlags = D3D11_CREATE_DEVICE_BGRA_SUPPORT;
- #if defined(_DEBUG)
-
-
- creationFlags |= D3D11_CREATE_DEVICE_DEBUG;
- #endif
-
-
-
-
-
-
-
- D3D_FEATURE_LEVEL featureLevels[] = {
- D3D_FEATURE_LEVEL_11_1, D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_1,
- D3D_FEATURE_LEVEL_10_0, D3D_FEATURE_LEVEL_9_3, D3D_FEATURE_LEVEL_9_2,
- D3D_FEATURE_LEVEL_9_1
- };
-
- ComPtr<ID3D11Device> device;
- ComPtr<ID3D11DeviceContext> context;
- DX::ThrowIfFailed(D3D11CreateDevice(
- nullptr,
- D3D_DRIVER_TYPE_HARDWARE, nullptr,
- creationFlags,
- featureLevels,
- ARRAYSIZE(featureLevels),
- D3D11_SDK_VERSION,
-
- &device,
- &m_featureLevel,
- &context
- ));
-
- DX::ThrowIfFailed(device.As(&m_d3dDevice));
- DX::ThrowIfFailed(context.As(&m_d3dContext));
- }
- void Direct3DBase::CreateWindowSizeDependentResources()
- {
-
-
- m_windowBounds = m_window->Bounds;
-
- float windowWidth = ConvertDipsToPixels(m_windowBounds.Width);
- float windowHeight = ConvertDipsToPixels(m_windowBounds.Height);
- #if WINVER > 0x0602
- m_orientation = DisplayInformation::GetForCurrentView()->CurrentOrientation;
- #else
- #if PHONE
-
- m_orientation = DisplayOrientations::Landscape;
- #else
- m_orientation = DisplayProperties::CurrentOrientation;
- #endif
- #endif
- bool swapDimensions = m_orientation == DisplayOrientations::Portrait ||
- m_orientation == DisplayOrientations::PortraitFlipped;
- m_renderTargetSize.Width = swapDimensions ? windowHeight : windowWidth;
- m_renderTargetSize.Height = swapDimensions ? windowWidth : windowHeight;
- if (m_swapChain != nullptr) {
-
- DX::ThrowIfFailed(
- m_swapChain->ResizeBuffers(2,
- static_cast<UINT>(m_renderTargetSize.Width),
- static_cast<UINT>(m_renderTargetSize.Height),
- DXGI_FORMAT_B8G8R8A8_UNORM, 0));
- } else {
-
-
- DXGI_SWAP_CHAIN_DESC1 swapChainDesc = { 0 };
- swapChainDesc.Width = static_cast<UINT>(
- m_renderTargetSize.Width);
- swapChainDesc.Height = static_cast<UINT>(m_renderTargetSize.Height);
- swapChainDesc.Format =
- DXGI_FORMAT_B8G8R8A8_UNORM;
- swapChainDesc.Stereo = false;
- swapChainDesc.SampleDesc.Count = 1;
- swapChainDesc.SampleDesc.Quality = 0;
- swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
- #if PHONE && WINVER <= 0x0602
- swapChainDesc.BufferCount = 1;
- swapChainDesc.Scaling = DXGI_SCALING_STRETCH;
-
-
- swapChainDesc.SwapEffect =
- DXGI_SWAP_EFFECT_DISCARD;
- #else
- swapChainDesc.BufferCount = 2;
- swapChainDesc.Scaling = DXGI_SCALING_NONE;
- swapChainDesc.SwapEffect =
- DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL;
-
- #endif
- swapChainDesc.Flags = 0;
- ComPtr<IDXGIDevice1> dxgiDevice;
- DX::ThrowIfFailed(m_d3dDevice.As(&dxgiDevice));
- ComPtr<IDXGIAdapter> dxgiAdapter;
- DX::ThrowIfFailed(dxgiDevice->GetAdapter(&dxgiAdapter));
- ComPtr<IDXGIFactory2> dxgiFactory;
- DX::ThrowIfFailed(
- dxgiAdapter->GetParent(__uuidof(IDXGIFactory2), &dxgiFactory));
- Windows::UI::Core::CoreWindow ^ window = m_window.Get();
- DX::ThrowIfFailed(dxgiFactory->CreateSwapChainForCoreWindow(
- m_d3dDevice.Get(), reinterpret_cast<IUnknown*>(window), &swapChainDesc,
- nullptr,
- &m_swapChain));
-
-
-
-
- DX::ThrowIfFailed(dxgiDevice->SetMaximumFrameLatency(1));
- }
-
-
- DXGI_MODE_ROTATION rotation = DXGI_MODE_ROTATION_UNSPECIFIED;
- switch (m_orientation) {
- case DisplayOrientations::Landscape:
- rotation = DXGI_MODE_ROTATION_IDENTITY;
- m_orientationTransform3D = XMFLOAT4X4(
- 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f,
- 0.0f, 0.0f, 0.0f, 1.0f);
- break;
- case DisplayOrientations::Portrait:
- rotation = DXGI_MODE_ROTATION_ROTATE270;
- m_orientationTransform3D = XMFLOAT4X4(
- 0.0f, 1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f,
- 0.0f, 0.0f, 0.0f, 0.0f, 1.0f);
- break;
- case DisplayOrientations::LandscapeFlipped:
- rotation = DXGI_MODE_ROTATION_ROTATE180;
- m_orientationTransform3D = XMFLOAT4X4(
- -1.0f, 0.0f, 0.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f,
- 0.0f, 0.0f, 0.0f, 0.0f, 1.0f);
- break;
- case DisplayOrientations::PortraitFlipped:
- rotation = DXGI_MODE_ROTATION_ROTATE90;
- m_orientationTransform3D = XMFLOAT4X4(
- 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f,
- 0.0f, 0.0f, 0.0f, 0.0f, 1.0f);
- break;
- default:
- throw ref new Platform::FailureException();
- }
- #if !PHONE || WINVER > 0x0602
- DX::ThrowIfFailed(m_swapChain->SetRotation(rotation));
- #endif
-
- ComPtr<ID3D11Texture2D> backBuffer;
- DX::ThrowIfFailed(
- m_swapChain->GetBuffer(0, __uuidof(ID3D11Texture2D), &backBuffer));
- DX::ThrowIfFailed(m_d3dDevice->CreateRenderTargetView(
- backBuffer.Get(), nullptr, &m_renderTargetView));
-
- CD3D11_TEXTURE2D_DESC depthStencilDesc(
- DXGI_FORMAT_D24_UNORM_S8_UINT, static_cast<UINT>(m_renderTargetSize.Width),
- static_cast<UINT>(m_renderTargetSize.Height), 1, 1,
- D3D11_BIND_DEPTH_STENCIL);
- ComPtr<ID3D11Texture2D> depthStencil;
- DX::ThrowIfFailed(
- m_d3dDevice->CreateTexture2D(&depthStencilDesc, nullptr, &depthStencil));
- CD3D11_DEPTH_STENCIL_VIEW_DESC depthStencilViewDesc(
- D3D11_DSV_DIMENSION_TEXTURE2D);
- DX::ThrowIfFailed(m_d3dDevice->CreateDepthStencilView(
- depthStencil.Get(), &depthStencilViewDesc, &m_depthStencilView));
-
- CD3D11_VIEWPORT viewport(0.0f, 0.0f, m_renderTargetSize.Width,
- m_renderTargetSize.Height);
- m_d3dContext->RSSetViewports(1, &viewport);
- }
- void Direct3DBase::UpdateForWindowSizeChange()
- {
- if (m_window->Bounds.Width != m_windowBounds.Width ||
- m_window->Bounds.Height != m_windowBounds.Height ||
- #if WINVER > 0x0602
- m_orientation !=
- DisplayInformation::GetForCurrentView()->CurrentOrientation)
- #else
- m_orientation != DisplayProperties::CurrentOrientation)
- #endif
- {
- ID3D11RenderTargetView* nullViews[] = { nullptr };
- m_d3dContext->OMSetRenderTargets(ARRAYSIZE(nullViews), nullViews, nullptr);
- m_renderTargetView = nullptr;
- m_depthStencilView = nullptr;
- m_d3dContext->Flush();
- CreateWindowSizeDependentResources();
- }
- }
- void Direct3DBase::ReleaseResourcesForSuspending()
- {
-
-
-
-
-
-
-
-
- m_swapChain = nullptr;
- m_renderTargetView = nullptr;
- m_depthStencilView = nullptr;
- }
- void Direct3DBase::Present()
- {
- #if PHONE && WINVER <= 0x0602
- HRESULT hr = m_swapChain->Present(1, 0);
- #else
-
-
- DXGI_PRESENT_PARAMETERS parameters = { 0 };
- parameters.DirtyRectsCount = 0;
- parameters.pDirtyRects = nullptr;
- parameters.pScrollRect = nullptr;
- parameters.pScrollOffset = nullptr;
- HRESULT hr = m_swapChain->Present1(1, 0, ¶meters);
- #endif
-
-
-
-
- m_d3dContext->DiscardView(m_renderTargetView.Get());
-
- m_d3dContext->DiscardView(m_depthStencilView.Get());
-
-
- if (hr == DXGI_ERROR_DEVICE_REMOVED) {
- HandleDeviceLost();
- } else {
- DX::ThrowIfFailed(hr);
- }
- }
- float Direct3DBase::ConvertDipsToPixels(float dips)
- {
- static const float dipsPerInch = 96.0f;
- #if WINVER > 0x0602
- return floor(dips * DisplayInformation::GetForCurrentView()->LogicalDpi /
- dipsPerInch +
- 0.5f);
- #else
- return floor(dips * DisplayProperties::LogicalDpi / dipsPerInch +
- 0.5f);
- #endif
- }
|