General: Convert typedefs into using aliases

This commit is contained in:
Lioncash
2019-08-16 04:11:27 -04:00
committed by Phillip Stephens
parent 78ce16aa9f
commit 88355ada5f
10 changed files with 20 additions and 19 deletions

View File

@@ -25,8 +25,8 @@ class IWindow;
#include <d3d9.h>
typedef int (WINAPI *pD3DPERF_BeginEvent)(D3DCOLOR col, LPCWSTR wszName);
typedef int (WINAPI *pD3DPERF_EndEvent)();
using pD3DPERF_BeginEvent = int (WINAPI*)(D3DCOLOR col, LPCWSTR wszName);
using pD3DPERF_EndEvent = int (WINAPI*)();
struct D3D12Context {
ComPtr<IDXGIFactory2> m_dxFactory;