diff options
| author | Andre Weissflog <floooh@gmail.com> | 2019-06-08 16:57:47 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2019-06-08 16:57:47 +0200 |
| commit | 9ec244badf6f24aa4ccb5fbce45028071431539f (patch) | |
| tree | 39e48ef65310060fcc29264eb89d532584088476 /README.md | |
| parent | b6c2a4b348a2c5a2c3f904b03fdfebf094e42069 (diff) | |
README updated
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -397,6 +397,17 @@ Mainly some "missing features" for desktop apps: # Updates +- **08-Jun-2019**: some new stuff in sokol_app.h: + - the ```sapp_event``` struct has a new field ```bool key_repeat``` + which is true when a keyboard event is a key-repeat (for the + event types ```SAPP_EVENTTYPE_KEY_DOWN``` and ```SAPP_EVENTTYPE_CHAR```). + Many thanks to [Scott Lembcke](https://github.com/slembcke) for + the pull request! + - a new function to poll the internal frame counter: + ```uint64_t sapp_frame_count(void)```, previously the frame counter + was only available via ```sapp_event```. + - also check out the new [event-inspector sample](https://floooh.github.io/sokol-html5/wasm/events-sapp.html) + - **04-Jun-2019**: All sokol headers now recognize a config-define ```SOKOL_DLL``` if sokol should be compiled into a DLL (when used with ```SOKOL_IMPL```) or used as a DLL. On Windows, this will prepend the public function declarations |