binana/profile/3.3.5a-windows-386/include/external/d3d9/viewport.h

15 lines
205 B
C
Raw Permalink Normal View History

2025-05-08 00:05:46 -04:00
#ifndef D3D9_VIEWPORT_H
#define D3D9_VIEWPORT_H
DECLARE_STRUCT(D3DVIEWPORT9);
struct D3DVIEWPORT9 {
uint32_t X;
uint32_t Y;
uint32_t Width;
uint32_t Height;
float MinZ;
float MaxZ;
};
#endif