blob: 57dea3ef329353100a1f446192fec550a1bb6859 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef DDRW_RECTANGLE_H_INCLUDED
#define DDRW_RECTANGLE_H_INCLUDED
#include <d3d9.h>
#include <d3dx9.h>
#include <stdbool.h>
#include "D9DW_Config.h"
class D9DW_Rectangle
{
private:
ID3DXLine* gLine;
IDirect3DDevice9* pDev;
inline void clearoutArea(int x, int y, int width, int height, UINT32 rgb_alpha);
public:
HRESULT Create(IDirect3DDevice9* pDevice)
{
pDev = pDevice;
return D3DXCreateLine(pDev, &gLine);
}
void Release(void)
{
gLine->Release();
}
void Draw(int x , int y, int width, int height, UINT32 rgb_alpha, bool doFill);
};
#endif // DDRW_RECTANGLE_H_INCLUDED
|