forked from microsoft/Xbox-ATG-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleMSAA.h
93 lines (66 loc) · 2.7 KB
/
SimpleMSAA.h
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//--------------------------------------------------------------------------------------
// SimpleMSAA.h
//
// This sample demonstrates setting up a MSAA render target for DirectX 12
//
// Advanced Technology Group (ATG)
// Copyright (C) Microsoft Corporation. All rights reserved.
//--------------------------------------------------------------------------------------
#pragma once
#include "DeviceResources.h"
#include "StepTimer.h"
// A basic sample implementation that creates a D3D12 device and
// provides a render loop.
class Sample
{
public:
Sample();
// Initialization and management
void Initialize(IUnknown* window);
// Basic Sample loop
void Tick();
// Messages
void OnSuspending();
void OnResuming();
private:
void Update(DX::StepTimer const& timer);
void Render();
void Clear();
void CreateDeviceDependentResources();
void CreateWindowSizeDependentResources();
// Device resources.
std::unique_ptr<DX::DeviceResources> m_deviceResources;
// MSAA resources.
Microsoft::WRL::ComPtr<ID3D12Resource> m_msaaRenderTarget;
Microsoft::WRL::ComPtr<ID3D12Resource> m_msaaDepthStencil;
Microsoft::WRL::ComPtr<ID3D12DescriptorHeap> m_msaaRTVDescriptorHeap;
Microsoft::WRL::ComPtr<ID3D12DescriptorHeap> m_msaaDSVDescriptorHeap;
bool m_msaa;
// Rendering loop timer.
uint64_t m_frame;
DX::StepTimer m_timer;
// Input devices.
std::unique_ptr<DirectX::GamePad> m_gamePad;
DirectX::GamePad::ButtonStateTracker m_gamePadButtons;
// DirectXTK objects.
std::unique_ptr<DirectX::GraphicsMemory> m_graphicsMemory;
std::unique_ptr<DirectX::SpriteBatch> m_batch;
std::unique_ptr<DirectX::DescriptorHeap> m_resourceDescriptors;
enum Descriptors
{
UIFont,
CtrlFont,
Count
};
std::unique_ptr<DirectX::SpriteFont> m_smallFont;
std::unique_ptr<DirectX::SpriteFont> m_ctrlFont;
std::unique_ptr<DirectX::CommonStates> m_states;
std::unique_ptr<DirectX::Model> m_model;
std::unique_ptr<DirectX::EffectTextureFactory> m_modelResources;
std::unique_ptr<DirectX::IEffectFactory> m_fxFactory;
std::vector<std::shared_ptr<DirectX::IEffect>> m_modelMSAA;
std::vector<std::shared_ptr<DirectX::IEffect>> m_modelStandard;
DirectX::SimpleMath::Matrix m_world;
DirectX::SimpleMath::Matrix m_view;
DirectX::SimpleMath::Matrix m_proj;
};