mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 04:37:15 +00:00
fix some of wine d3d8 waring at compiling.
no waring are show in d3d8 now. svn path=/trunk/; revision=30729
This commit is contained in:
parent
0b0fb5b032
commit
3d237b54ad
1 changed files with 2 additions and 2 deletions
|
@ -148,11 +148,11 @@
|
||||||
#define D3DCOLORWRITEENABLE_ALPHA (1L<<3)
|
#define D3DCOLORWRITEENABLE_ALPHA (1L<<3)
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef MAKEFOURCC
|
||||||
#define MAKEFOURCC(ch0, ch1, ch2, ch3) \
|
#define MAKEFOURCC(ch0, ch1, ch2, ch3) \
|
||||||
((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | \
|
((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | \
|
||||||
((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
|
((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
|
||||||
|
#endif
|
||||||
|
|
||||||
/****************************
|
/****************************
|
||||||
* Vertex Shaders Declaration
|
* Vertex Shaders Declaration
|
||||||
|
|
Loading…
Reference in a new issue