summaryrefslogtreecommitdiff
path: root/sdl2/video.scm
Commit message (Collapse)AuthorAgeFilesLines
* Export new render and video bindings.Leo Prikler2020-12-051-0/+5
|
* video: Update copyright year.David Thompson2020-12-051-1/+1
|
* video: Change window size/position procedures to return multiple values.David Thompson2020-12-051-1/+2
|
* video: Change set-window-size! argument list.David Thompson2020-12-051-6/+3
|
* video: Change set-window-position! argument list.David Thompson2020-12-051-6/+3
|
* video: Add more bindings.Leo Prikler2020-12-021-0/+21
| | | | | | | | | | | * sdl2/bindings.scm (sdl-window-get-minimum-size) (sdl-window-get-maximum-size, sdl-window-set-minimum-size) (sdl-window-set-maximum-size, sdl-window-set-resizable): New procedures. * sdl2/video.scm (window-minimum-size, window-maximum-size) (set-window-minimum-size!, set-window-maximum-size!) (set-window-resizable!): New procedures. * doc/api.texi: Document new (sdl2 video) bindings.
* video: Add SDL_SetWindowFullscreen binding.David Thompson2016-01-091-0/+15
| | | | | * sdl2/bindings.scm (sdl-set-window-fullscreen): New procedure. * sdl2/video.scm (set-window-fullscreen!): New procedure.
* video: Fix typo in set-gl-attribute!David Thompson2016-01-091-1/+1
| | | | | * sdl2/video.scm (set-gl-attribute!): s/contet-minor-version/context-minor-version/
* video: Add SDL_GL_SetSwapInterval binding.David Thompson2016-01-081-1/+21
| | | | | * sdl2/bindings.scm (sdl-gl-set-swap-interval): New procedure. * sdl2/video.scm (set-gl-swap-interval!): New procedure.
* video: Add SDL_GL_SetAttribute binding.David Thompson2016-01-021-1/+55
| | | | | * sdl2/bindings.scm (sdl-get-set-attribute): New procedure. * sdl2/video.scm (set-gl-attribute!): New procedure.
* window: Allow unspecified and centered window positions.David Thompson2015-12-221-4/+16
| | | | | | | | * sdl2/bindings.scm (SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_UNDEFINED): New variables. * sdl2/video.scm (make-window): Accept #f and 'center' as valid coordinates for undefined and centered positioning, respectively. Use an undefined position by default.
* window: Improve call-with-window.David Thompson2015-12-141-9/+7
| | | | | * sdl2/video.scm (call-with-window): Use a pre-existing window object instead of making a new one.
* Remove "sdl-" prefix from symbols in window module.David Thompson2015-12-141-69/+69
|
* Initial commit.David Thompson2015-10-061-0/+256
Let's do this!