diff options
author | crupest <crupest@outlook.com> | 2020-10-28 20:36:47 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-10-28 20:36:47 +0800 |
commit | cf07d193b97168048a72793c59f096504acf78a5 (patch) | |
tree | 8d14f6eba4140265931efc877d6371e8cf5cbf96 /include/cru/win/native/WindowRenderTarget.hpp | |
parent | a09a9645d3c823e3559659dc1ddd213510755820 (diff) | |
download | cru-cf07d193b97168048a72793c59f096504acf78a5.tar.gz cru-cf07d193b97168048a72793c59f096504acf78a5.tar.bz2 cru-cf07d193b97168048a72793c59f096504acf78a5.zip |
...
Diffstat (limited to 'include/cru/win/native/WindowRenderTarget.hpp')
-rw-r--r-- | include/cru/win/native/WindowRenderTarget.hpp | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/include/cru/win/native/WindowRenderTarget.hpp b/include/cru/win/native/WindowRenderTarget.hpp deleted file mode 100644 index 786a90a6..00000000 --- a/include/cru/win/native/WindowRenderTarget.hpp +++ /dev/null @@ -1,48 +0,0 @@ -#pragma once -#include "Base.hpp" - -namespace cru::platform::graph::win::direct { -class DirectGraphFactory; -} - -namespace cru::platform::native::win { -// Represents a window render target. -class WindowRenderTarget : public Object { - public: - WindowRenderTarget(graph::win::direct::DirectGraphFactory* factory, - WinNativeWindow* window); - - CRU_DELETE_COPY(WindowRenderTarget) - CRU_DELETE_MOVE(WindowRenderTarget) - - ~WindowRenderTarget() override = default; - - public: - graph::win::direct::DirectGraphFactory* GetDirectFactory() const { - return factory_; - } - - ID2D1DeviceContext* GetD2D1DeviceContext() { - return d2d1_device_context_.Get(); - } - - // Resize the underlying buffer. - void ResizeBuffer(int width, int height); - - // Set this render target as the d2d device context's target. - void SetAsTarget(); - - // Present the data of the underlying buffer to the window. - void Present(); - - private: - void CreateTargetBitmap(); - - private: - WinNativeWindow* window_; - graph::win::direct::DirectGraphFactory* factory_; - Microsoft::WRL::ComPtr<ID2D1DeviceContext> d2d1_device_context_; - Microsoft::WRL::ComPtr<IDXGISwapChain1> dxgi_swap_chain_; - Microsoft::WRL::ComPtr<ID2D1Bitmap1> target_bitmap_; -}; -} // namespace cru::platform::native::win |