blob: 83ac1e03ac8cf3caae2c6fd375f8adda1f15e827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  | 
#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,
                     HWND hwnd);
  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:
  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
 
  |