make sure d3ddev is not null

This commit is contained in:
FunkyFr3sh 2018-10-15 03:31:57 +02:00
parent 59f0f4d9b2
commit 21500ca591
5 changed files with 5 additions and 5 deletions

11
inc/render_d3d9.h Normal file
View file

@ -0,0 +1,11 @@
#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();
BOOL Direct3D9_DeviceLost();
extern HMODULE Direct3D9_hModule;