aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1139 from colinbellino/jai-bindgen-trace-hookspre-bindings-cleanupAndre Weissflog2024-10-271-2/+0
|\ | | | | Add back sg_trace_hooks & sg_install_trace_hooks, not sure why those were ignored
| * Add back sg_trace_hooks & sg_install_trace_hooks, not sure why those were ↵Colin Bellino2024-10-271-2/+0
|/ | | | ignored
* Merge branch 'dlannan-nuklear_add_cursors'Andre Weissflog2024-10-242-0/+7
|\
| * update changelog (https://github.com/floooh/sokol/pull/1138)Andre Weissflog2024-10-241-0/+5
| |
| * Merge branch 'nuklear_add_cursors' of https://github.com/dlannan/sokol into ↵Andre Weissflog2024-10-241-0/+2
|/| | | | | | | dlannan-nuklear_add_cursors
| * Update sokol_nuklear.hDavid Lannan2024-10-241-1/+1
| | | | | | Fixed incorrect parameter passing.
| * Added command to enable cursors with default font.David Lannan2024-10-231-0/+2
| |
* | Merge pull request #1128 from colinbellino/jai-bindgen-wasmAndre Weissflog2024-10-231-0/+3
|\ \ | |/ |/| Add .WASM support for Jai bindgen
| * Rename *_wasm_wgpu_* to *_wasm_gl_*Colin Bellino2024-10-161-2/+2
| |
| * Add .WASM support for Jai bindgenColin Bellino2024-10-161-0/+3
| |
* | add a little blurb to the last changelog entryAndre Weissflog2024-10-221-0/+9
| |
* | Merge branch 'DctrNoob-simgui-textureid-update'Andre Weissflog2024-10-222-6/+22
|\ \ | |/ |/|
| * update changelog (https://github.com/floooh/sokol/pull/1134)Andre Weissflog2024-10-221-0/+16
| |
| * sokol_imgui.h: changed ImTextureID type from void* to uint64_tThomas Stehle2024-10-211-6/+6
|/
* fix a couple of documentation typosAndre Weissflog2024-10-162-13/+16
|
* update changelog (https://github.com/floooh/sokol/pull/1121)Andre Weissflog2024-10-141-0/+7
|
* Merge pull request #1121 from kcbanner/gl_rg11b10fAndre Weissflog2024-10-141-1/+4
|\ | | | | Allow SG_PIXELFORMAT_RG11B10F to be a render target on SOKOL_GLCORE
| * Allow SG_PIXELFORMAT_RG11B10F to be a render target when ↵kcbanner2024-10-131-1/+4
|/ | | | EXT_color_buffer_float is enabled
* tests: fix android compile testsAndre Weissflog2024-09-201-4/+4
|
* tests: fix nosokolapp build targets for windowsAndre Weissflog2024-09-201-2/+2
|
* sokol_gl.h: fix a C-ism / C++ warning (using {0} for a struct init)Andre Weissflog2024-09-201-1/+2
|
* sokol_imgui.h: fix unused warning with SOKOL_IMGUI_NO_SOKOL_APPAndre Weissflog2024-09-201-2/+5
|
* add 'no-sokol-app' compilation tests for sokol-imgui and sokol-nuklearAndre Weissflog2024-09-204-1/+60
|
* fix changelog typosAndre Weissflog2024-09-171-2/+2
|
* Merge branch 'qwx9-master'Andre Weissflog2024-09-173-2/+134
|\
| * update sokol_app.h feature matrix, readme and changelog (Linux clipboard ↵Andre Weissflog2024-09-173-2/+10
| | | | | | | | support)
| * sokol_app.h x11: protect from accessing uninitialized _sapp.clipboard.bufferAndre Weissflog2024-09-171-4/+6
| |
| * sokol_app.h x11: PR fix, coding styleAndre Weissflog2024-09-161-42/+42
| |
| * sokol_app.h x11: PR fix, initialize UTF8_STRING also when clipboard is not ↵Andre Weissflog2024-09-161-5/+5
| | | | | | | | enabled
| * Merge branch 'master' of https://github.com/qwx9/sokol into qwx9-masterAndre Weissflog2024-09-161-1/+123
|/|
| * sokol_app: x11 clipboard supportqwx2024-09-121-1/+123
| | | | | | | | based on #998 and https://github.com/X11-good-tools/x11clipboard
* | Merge pull request #1110 from badlogic/patch-1Andre Weissflog2024-09-151-1/+1
|\ \ | |/ |/| Fix _saudio_backend_shutdown for _SAUDIO_APPLE
| * Fix _saudio_backend_shutdown for _SAUDIO_APPLEMario Zechner2024-09-151-1/+1
|/ | | The code path tries to return void. Does not compile for obvious reasons.
* sokol_imgui.h: update for Dear ImGui 1.91.1 (fixed ↵Andre Weissflog2024-09-102-6/+14
| | | | https://github.com/floooh/sokol/issues/1105)
* Merge pull request #1107 from pplux/bug/missing-sokol-noapi-win32-destroyAndre Weissflog2024-09-101-1/+1
|\ | | | | Fixes a missing wgl destruction (SOKOL_NOAPI)
| * Fixes a missing wgl destruction (SOKOL_NOAPI)Jose L. Hidalgo (PpluX)2024-09-101-1/+1
|/ | | | | When we use SOKOL_NOAPI the cleanup of the window still was trying to destroy an opengl context.
* sokol-d bindings: sokol_imgui.h wasn't actually included in the bindings ↵Andre Weissflog2024-09-021-1/+5
| | | | generation
* Merge pull request #1103 from floooh/issue929_remove_filter_noneAndre Weissflog2024-09-029-53/+37
|\ | | | | sokol_gfx.h: remove SG_FILTER_NONE (fixes #929)
| * update changelog (https://github.com/floooh/sokol/pull/1103)Andre Weissflog2024-09-022-1/+16
| |
| * sokol_gfx.h: remove SG_FILTER_NONE (fixes #929)Andre Weissflog2024-09-027-52/+21
| |
* | Merge pull request #1102 from waywardmonkeys/fix-typosAndre Weissflog2024-09-023-5/+5
|\ \ | |/ |/| Fix typos.
| * Fix typos.Bruce Mitchener2024-09-013-5/+5
|/
* sokol_gfx.h d3d11: add sg_desc.d3d11_shader_debugging bool flag (#1101)Andre Weissflog2024-09-012-1/+28
| | | Fixes #1043
* fix changelog typoAndre Weissflog2024-09-011-1/+1
|
* sokol_gfx.h wgpu: fix up bindgroups cache when destroying associated ↵Andre Weissflog2024-08-313-30/+105
| | | | resource objects (#1097)
* Merge pull request #1100 from floooh/fix/sokol-zig/issue78Andre Weissflog2024-08-312-14/+47
|\ | | | | sokol-zig: work around a breaking Zig stdlib naming change
| * update changelogAndre Weissflog2024-08-311-0/+2
| |
| * sokol-zig: work around a breaking naming convention change in the Zig stdlibAndre Weissflog2024-08-312-14/+45
|/
* fix links in changelogAndre Weissflog2024-08-261-1/+1
|
* fix changelog typoAndre Weissflog2024-08-261-1/+1
|