Changeset 60
- Timestamp:
- 11/30/04 22:36:01 (4 years ago)
- Files:
-
- trunk/DerelictGL/derelict/opengl/gl.d (modified) (1 diff)
- trunk/DerelictSDL/derelict/sdl/events.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/DerelictGL/derelict/opengl/gl.d
r46 r60 89 89 90 90 /* layer types */ 91 const BYTEPFD_MAIN_PLANE = 0;92 const BYTEPFD_OVERLAY_PLANE = 1;93 const BYTEPFD_UNDERLAY_PLANE = -1;91 const int PFD_MAIN_PLANE = 0; 92 const int PFD_OVERLAY_PLANE = 1; 93 const int PFD_UNDERLAY_PLANE = -1; 94 94 95 95 /* PIXELFORMATDESCRIPTOR flags */ trunk/DerelictSDL/derelict/sdl/events.d
r18 r60 218 218 typedef int function(SDL_Event *event) SDL_EventFilter; 219 219 220 const Uint8 SDL_QUERY = -1;220 const Uint8 SDL_QUERY = cast(Uint8)-1; 221 221 const Uint8 SDL_IGNORE = 0; 222 222 const Uint8 SDL_DISABLE = 0;
