Changeset 100
- Timestamp:
- 03/16/05 07:56:00 (4 years ago)
- Files:
-
- trunk/DerelictAL/Makefile (modified) (1 diff)
- trunk/DerelictAL/Makefile.linux (modified) (1 diff)
- trunk/DerelictGL/Makefile (modified) (1 diff)
- trunk/DerelictGL/Makefile.linux (modified) (1 diff)
- trunk/DerelictGLFW/Makefile (modified) (1 diff)
- trunk/DerelictGLFW/Makefile.linux (modified) (1 diff)
- trunk/DerelictGLU/Makefile (modified) (1 diff)
- trunk/DerelictGLU/Makefile.linux (modified) (1 diff)
- trunk/DerelictSDL/Makefile (modified) (1 diff)
- trunk/DerelictSDL/Makefile.linux (modified) (1 diff)
- trunk/DerelictSDL/derelict/sdl/endian.d (modified) (2 diffs)
- trunk/DerelictSDL/derelict/sdl/sdlversion.d (modified) (1 diff)
- trunk/DerelictSDL/derelict/sdl/video.d (modified) (1 diff)
- trunk/DerelictSDLImage/Makefile (modified) (1 diff)
- trunk/DerelictSDLImage/Makefile.linux (modified) (1 diff)
- trunk/DerelictSDLMixer/Makefile (modified) (1 diff)
- trunk/DerelictSDLMixer/Makefile.linux (modified) (1 diff)
- trunk/DerelictSDLNet/Makefile (modified) (1 diff)
- trunk/DerelictSDLNet/Makefile.linux (modified) (1 diff)
- trunk/DerelictSDLNet/derelict/sdl/net.d (modified) (1 diff)
- trunk/DerelictSDLttf/Makefile (modified) (1 diff)
- trunk/DerelictSDLttf/Makefile.linux (modified) (1 diff)
- trunk/DerelictUtil/Makefile (modified) (1 diff)
- trunk/DerelictUtil/Makefile.linux (modified) (1 diff)
- trunk/docs/index.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/DerelictAL/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictUtil trunk/DerelictAL/Makefile.linux
r96 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -q 8 8 DINC = -I$(SRC.DIR) -I../DerelictUtil trunk/DerelictGL/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictUtil trunk/DerelictGL/Makefile.linux
r93 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -q 8 8 DINC = -I$(SRC.DIR) -I../DerelictUtil trunk/DerelictGLFW/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictUtil trunk/DerelictGLFW/Makefile.linux
r96 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -q 8 8 DINC = -I$(SRC.DIR) -I../DerelictUtil trunk/DerelictGLU/Makefile
r92 r100 5 5 BIN.DIR = ..\bin 6 6 7 DFLAGS = - v7 DFLAGS = -w -release 8 8 LIBFLAGS = -c -n 9 9 DINC = -I$(SRC.DIR) -I$(OGL.SRC.DIR) -I..\DerelictUtil trunk/DerelictGLU/Makefile.linux
r96 r100 5 5 BIN.DIR = ../bin 6 6 7 DFLAGS = - v7 DFLAGS = -w -release 8 8 LIBFLAGS = -q 9 9 DINC = -I$(SRC.DIR) -I$(OGL.SRC.DIR) -I../DerelictUtil trunk/DerelictSDL/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictUtil trunk/DerelictSDL/Makefile.linux
r91 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -r 8 8 DINC = -I$(SRC.DIR) -I../DerelictUtil trunk/DerelictSDL/derelict/sdl/endian.d
r18 r100 32 32 Uint16 SDL_Swap16(Uint16 val) 33 33 { 34 return ((val<<8)|(val>>8));34 return cast(Uint16)((val<<8)|(val>>8)); 35 35 } 36 36 … … 70 70 Uint16 SDL_SwapBE16(Uint16 val) 71 71 { 72 return ((val<<8)|(val>>8));72 return cast(Uint16)((val<<8)|(val>>8)); 73 73 } 74 74 trunk/DerelictSDL/derelict/sdl/sdlversion.d
r19 r100 57 57 SDL_MINOR_VERSION * 100 + SDL_PATCHLEVEL; 58 58 59 b itSDL_VERSION_ATLEAST(Uint8 major, Uint8 minor, Uint8 patch)59 bool SDL_VERSION_ATLEAST(Uint8 major, Uint8 minor, Uint8 patch) 60 60 { 61 return (SDL_COMPILEDVERSION >= SDL_VERSIONNUM(major,minor,patch));61 return cast(bool)(SDL_COMPILEDVERSION >= SDL_VERSIONNUM(major,minor,patch)); 62 62 } 63 63 trunk/DerelictSDL/derelict/sdl/video.d
r18 r100 170 170 // MACROS 171 171 //============================================================================== 172 b itSDL_MUSTLOCK(SDL_Surface* surface)173 { 174 return (surface.offset ||172 bool SDL_MUSTLOCK(SDL_Surface* surface) 173 { 174 return cast(bool)(surface.offset || 175 175 ((surface.flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0)); 176 176 } trunk/DerelictSDLImage/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictSDL -I..\DerelictUtil trunk/DerelictSDLImage/Makefile.linux
r96 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -r 8 8 DINC = -I$(SRC.DIR) -I../DerelictSDL -I../DerelictUtil trunk/DerelictSDLMixer/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictSDL -I..\DerelictUtil trunk/DerelictSDLMixer/Makefile.linux
r96 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -r 8 8 DINC = -I$(SRC.DIR) -I../DerelictSDL -I../DerelictUtil trunk/DerelictSDLNet/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictSDL -I..\DerelictUtil trunk/DerelictSDLNet/Makefile.linux
r96 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -r 8 8 DINC = -I$(SRC.DIR) -I../DerelictSDL -I../DerelictUtil trunk/DerelictSDLNet/derelict/sdl/net.d
r91 r100 93 93 } 94 94 95 b itSDLNet_SocketReady(TCPsocket sock)96 { 97 return ((sock !== null) && (cast(SDLNet_GenericSocket)sock).ready);98 } 99 100 b itSDLNet_SocketReady(UDPsocket sock)101 { 102 return ((sock !== null) && (cast(SDLNet_GenericSocket)sock).ready);95 bool SDLNet_SocketReady(TCPsocket sock) 96 { 97 return cast(bool)((sock !== null) && (cast(SDLNet_GenericSocket)sock).ready); 98 } 99 100 bool SDLNet_SocketReady(UDPsocket sock) 101 { 102 return cast(bool)((sock !== null) && (cast(SDLNet_GenericSocket)sock).ready); 103 103 } 104 104 trunk/DerelictSDLttf/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) -I..\DerelictSDL -I..\DerelictUtil trunk/DerelictSDLttf/Makefile.linux
r96 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -r 8 8 DINC = -I$(SRC.DIR), -I../DerelictSDL -I../DerelictUtil trunk/DerelictUtil/Makefile
r91 r100 4 4 BIN.DIR = ..\bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -c -n 8 8 DINC = -I$(SRC.DIR) trunk/DerelictUtil/Makefile.linux
r94 r100 4 4 BIN.DIR = ../bin 5 5 6 DFLAGS = - v6 DFLAGS = -w -release 7 7 LIBFLAGS = -q 8 8 DINC = -I$(SRC.DIR) trunk/docs/index.html
r98 r100 104 104 <li>DerelictUtil</li> 105 105 </ul> 106 </body> 106 107 </html>
