16 lines
262 B
C
16 lines
262 B
C
#ifndef D3DRESOURCE_H
|
|
#define D3DRESOURCE_H
|
|
|
|
struct D3DResource
|
|
{
|
|
unsigned int Common;
|
|
unsigned int ReferenceCount;
|
|
unsigned int Fence;
|
|
unsigned int ReadFence;
|
|
unsigned int Identifier;
|
|
unsigned int BaseFlush;
|
|
};
|
|
|
|
|
|
#endif // D3DRESOURCE_H
|