1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-24 01:29:53 +01:00
cnc-ddraw/inc/render_d3d9.h

12 lines
265 B
C
Raw Normal View History

2018-10-15 00:57:05 +02:00
#pragma once
typedef struct CUSTOMVERTEX { float x, y, z, rhw, u, v; } CUSTOMVERTEX;
DWORD WINAPI render_d3d9_main(void);
BOOL Direct3D9_Create();
BOOL Direct3D9_Reset();
BOOL Direct3D9_Release();
2018-11-12 00:39:47 +01:00
BOOL Direct3D9_OnDeviceLost();
2018-10-15 00:57:05 +02:00
extern HMODULE Direct3D9_hModule;