diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-08-18 02:42:07 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:22:36 +0200 |
| commit | 96a5583f3b37c0d56e60d726641834bfadf15d7a (patch) | |
| tree | adc35c17b3d4a42d7e617b7556d7e7693d246c3d /src/win95/aw.h | |
| parent | c12ec5ff7e430a9885c3edba0f5ff1875f0b6b6a (diff) | |
Fixed texture filtering modes.
Diffstat (limited to 'src/win95/aw.h')
| -rw-r--r-- | src/win95/aw.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/win95/aw.h b/src/win95/aw.h index 70717b0..62c85db 100644 --- a/src/win95/aw.h +++ b/src/win95/aw.h @@ -10,7 +10,8 @@ typedef struct DIRECTDRAWSURFACE int w; int h; - unsigned char *data; + + int filter; } DIRECTDRAWSURFACE; typedef DIRECTDRAWSURFACE * LPDIRECTDRAWSURFACE; @@ -22,17 +23,13 @@ typedef struct DIRECT3DTEXTURE int w; int h; - unsigned char *data; + + int filter; } DIRECT3DTEXTURE; typedef DIRECT3DTEXTURE * LPDIRECT3DTEXTURE; typedef DIRECT3DTEXTURE D3DTexture; -//typedef struct D3DTEXTUREHANDLE -//{ -// int x; -//} D3DTEXTUREHANDLE; - typedef int D3DTEXTUREHANDLE; #endif /* _INCLUDED_AW_H_ */ |
