mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
feat(gx): refresh CGxDevice studies
This commit is contained in:
parent
abcd88b4c1
commit
6a6d154b0a
63 changed files with 2685 additions and 549 deletions
22
profile/3.3.5a-windows-386/include/external/d3d9/surfacedesc.h
vendored
Normal file
22
profile/3.3.5a-windows-386/include/external/d3d9/surfacedesc.h
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef D3D9_SURFACEDESC_H
|
||||
#define D3D9_SURFACEDESC_H
|
||||
|
||||
DECLARE_STRUCT(D3DSURFACE_DESC);
|
||||
|
||||
#include "external/d3d9/format.h"
|
||||
#include "external/d3d9/resourcetype.h"
|
||||
#include "external/d3d9/pool.h"
|
||||
#include "external/d3d9/multisampletype.h"
|
||||
|
||||
struct D3DSURFACE_DESC {
|
||||
D3DFORMAT Format;
|
||||
D3DRESOURCETYPE Type;
|
||||
uint32_t Usage;
|
||||
D3DPOOL Pool;
|
||||
D3DMULTISAMPLE_TYPE MultiSampleType;
|
||||
uint32_t MultiSampleQuality;
|
||||
uint32_t Width;
|
||||
uint32_t Height;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue