aboutsummaryrefslogtreecommitdiff
path: root/include/cru/win/graph/direct/WindowRenderTarget.hpp
blob: c9ee098fb5ab17d3fb353eef404a700b52cdf81d (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
#pragma once
#include "Factory.hpp"

namespace cru::platform::graph::win::direct {
// Represents a window render target.
class D2DWindowRenderTarget : public Object {
 public:
  D2DWindowRenderTarget(gsl::not_null<DirectGraphFactory*> factory, HWND hwnd);

  CRU_DELETE_COPY(D2DWindowRenderTarget)
  CRU_DELETE_MOVE(D2DWindowRenderTarget)

  ~D2DWindowRenderTarget() override = default;

 public:
  graph::win::direct::DirectGraphFactory* GetDirectFactory() const {
    return factory_;
  }

  ID2D1DeviceContext* GetD2D1DeviceContext() {
    return d2d1_device_context_.Get();
  }

  void SetDpi(float x, float y);

  // Resize the underlying buffer.
  void ResizeBuffer(int width, int height);

  // Present the data of the underlying buffer to the window.
  void Present();

 private:
  void CreateTargetBitmap();

 private:
  DirectGraphFactory* factory_;
  HWND hwnd_;
  Microsoft::WRL::ComPtr<ID2D1DeviceContext> d2d1_device_context_;
  Microsoft::WRL::ComPtr<IDXGISwapChain1> dxgi_swap_chain_;
  Microsoft::WRL::ComPtr<ID2D1Bitmap1> target_bitmap_;
};
}  // namespace cru::platform::graph::win::direct