mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-19 01:46:28 +00:00
General: Convert typedefs into using aliases
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user