aboutsummaryrefslogtreecommitdiff
path: root/hello/main.cc
diff options
context:
space:
mode:
authorMarc Sunet <marc.sunet@amd.com>2025-11-19 11:24:21 -0800
committerMarc Sunet <marc.sunet@amd.com>2025-11-19 11:24:21 -0800
commit556cf073d61875368fe8511b75f5cb7db04ccb52 (patch)
tree356c3cfdfa926b7e3b11767dc76ab981610a463b /hello/main.cc
parent5516490fd5bea08d253dcaed59c430c2dada5c2d (diff)
Use C++ modules
Diffstat (limited to 'hello/main.cc')
-rw-r--r--hello/main.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/hello/main.cc b/hello/main.cc
index 8e41d4b..47a2aba 100644
--- a/hello/main.cc
+++ b/hello/main.cc
@@ -1,14 +1,13 @@
1#include <dxcommon.h> 1#include <dxcommon.h>
2#include <dxwindow.h>
3
4#include <d3d12.h>
5#include <dxgi1_4.h>
6#include <directx/d3dx12.h>
7 2
8#include <cassert> 3#include <cassert>
9#include <cstdio> 4#include <cstdio>
10 5
6import dxcommon;
7import dxwindow;
8
11using namespace dx; 9using namespace dx;
10using Microsoft::WRL::ComPtr;
12 11
13struct D3DSettings 12struct D3DSettings
14{ 13{