sdlada
sdlada copied to clipboard
Ada 2022 bindings to SDL 2
- [ ] Add support for using [Felix Krause's OpenGLAda binding](https://github.com/flyx/OpenGLAda)
I have Windows 8 and 10 Pro to test on.
This is two issues in one: - [ ] Need a tagged event hierarchy rather than a copy of the C struct. + [ ] Root type + [ ]...
In Ada, we don't use a main(), seems we need this function? See [SDL_SetMainReady](https://wiki.libsdl.org/SDL_SetMainReady) for more information.
Luke, For my project I need to create a video window inside an existing windows control. This can be done by specifying the hwnd of this control, and use it...
The idea is to mirror the API's for accessing pixel data as they are both images, essentially. - [ ] Pixel Iterators for Images - [ ] Pixel Iterators for...
``` SDL.Log.Put ("foo"); SDL.Log.Put_Debug ("bar"); ``` ...outputs the following for me on Win 7 64-bit: ``` INFO: foo DEBUG: ``` The "bar" is missing. Gdb reveals the string is not...
Hello! Here's little contribution to the project to make direct pixel access available. Added function to obtain Surface.Internals.Pitch. Added generic function to get Pixels as an access type. Added generic...
These changes allow users to import SDL2 using one of Homebrew, MacPorts or the framework from libsdl.org, in that order of preference. For the source-level framework changes, there are two...
Hello, I commented on #73 not realising the ticket was closed, and I am not sure if closed tickets generate notifications.... So here is the original: I am attempting to...