aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* gen_rust.py: fix incorrect type mapping for sokol-shape typesAndre Weissflog2026-01-011-2/+1
|
* sokol_imgui.h: fix a define-collision with X11 headers ('Status')Andre Weissflog2025-12-281-0/+5
|
* fix a changelog typoAndre Weissflog2025-12-241-1/+1
|
* fix some changelog typosAndre Weissflog2025-12-211-2/+2
|
* Merge pull request #1397 from floooh/issue1367/wgpu-cleanupAndre Weissflog2025-12-139-1007/+799
|\ | | | | WebGPU cleanup round
| * update changelog (https://github.com/floooh/sokol/issues/1367)Andre Weissflog2025-12-131-0/+39
| |
| * sokol_app.h: fix comment typoAndre Weissflog2025-12-121-1/+1
| |
| * sokol_gfx.h macos: init internal framebuffer width/height when no window ↵Andre Weissflog2025-12-111-8/+22
| | | | | | | | size was provided (see: https://github.com/floooh/sokol/issues/1399)
| * sokol_spine.h: update embedded wgsl shaderAndre Weissflog2025-12-101-138/+103
| |
| * sokol_nuklear.h: update embedded wgsl shaderAndre Weissflog2025-12-101-102/+86
| |
| * sokol_imgui.h: update embedded wgsl shaderAndre Weissflog2025-12-101-102/+86
| |
| * sokol_gl.h: update embedded wgsl shaderAndre Weissflog2025-12-101-105/+87
| |
| * sokol_fontstash.h: update embedded wgsl shaderAndre Weissflog2025-12-101-107/+89
| |
| * sokol_gfx.h wgpu: fix debug buildAndre Weissflog2025-12-101-1/+0
| |
| * sokol_debugtext.h: update embedded wgsl shaderAndre Weissflog2025-12-101-98/+82
| |
| * sokol_gfx.h wgpu: remove unused vars in _sg_wgpu_apply_uniformsAndre Weissflog2025-12-091-2/+0
| |
| * sokol_gfx.h wgpu: delay setting uniforms bindgroup to draw/dispatchAndre Weissflog2025-12-091-44/+54
| |
| * sokol_gfx.h wgpu: remove cubemap special case for depthOrArrayLayers in ↵Andre Weissflog2025-12-091-5/+1
| | | | | | | | _sg_wgpu_create_image
| * sokol_gfx.h wgpu: clear unused vertex buffer slots, remove special 'empty ↵Andre Weissflog2025-12-091-21/+8
| | | | | | | | bindgroup'
| * sokol_gfx.h wgpu: remove redundant _sg_wgpu_copy_image_data wgpu_tex argAndre Weissflog2025-12-091-4/+4
| |
| * sokol_gfx.h: use _SG_STRUCT for all struct definitionsAndre Weissflog2025-12-081-200/+105
| |
| * sokol_app.h: use _SAPP_STRUCT macro for all struct definitionsAndre Weissflog2025-12-081-73/+36
| |
* | sokol_gfx.h: add assert in _sg_validate_pipeline_desc (fixes #1404)Andre Weissflog2025-12-131-0/+1
| |
* | sokol_gfx.h: fix another gap in assert check (fixes #1405)Andre Weissflog2025-12-131-1/+1
| |
* | sokol_gfx.h: fix another gap in assert check (potentially fixes #1407)Andre Weissflog2025-12-131-1/+1
| |
* | sokol_gfx.h: fix gap in assert check (fixes #1406)Andre Weissflog2025-12-131-1/+1
| |
* | ci: update c3 version to 0.7.8 (see https://github.com/floooh/sokol-c3/pull/11)Andre Weissflog2025-12-131-1/+1
| |
* | fix outdated comments (sapp_desc.win32_* etc...)Andre Weissflog2025-12-102-15/+17
|/
* fix tests (forgot an sg_shutdown in sokol_debugtext_test)Andre Weissflog2025-12-071-1/+2
|
* sokol_gfx.h: protect sg_setup and sg_shutdown from being called twice (fixes ↵Andre Weissflog2025-12-071-0/+2
| | | | #1378)
* fix changelog formattingAndre Weissflog2025-12-061-0/+1
|
* update changelog (gl backend fixes)Andre Weissflog2025-12-061-0/+7
|
* sokol_gfx.h gl: move assert into right place (fixes #1395)Andre Weissflog2025-12-061-1/+1
|
* Merge pull request #1396 from Julianiolo/fix_gl_storage_imageAndre Weissflog2025-12-061-1/+1
|\ | | | | fix typo in _sg_gl_create_shader, leading to wrong bind slots being used
| * fix typo in _sg_gl_create_shaderJulianiolo2025-12-061-1/+1
|/
* ci: add libvulkan-dev package on linuxAndre Weissflog2025-12-062-2/+2
|
* integrate vulkan backend into test_linux.shAndre Weissflog2025-12-065-1/+54
|
* sokol_gfx.h vk: fix vulkan backend compile errorsAndre Weissflog2025-12-061-3/+3
|
* bindgen: add sokol_gfx_imgui.h to sokol-zig bindingsAndre Weissflog2025-12-062-1/+4
|
* gen_zig.py: include sokol-gfx trace-hooks apiAndre Weissflog2025-12-061-2/+0
|
* sokol_imgui.h: add log message when internal vertex or index buffer ↵Andre Weissflog2025-12-052-0/+6
| | | | overflows (fixes #1387)
* Merge pull request #1394 from floooh/issue1382/sgimgui-cleanupAndre Weissflog2025-12-054-1128/+1168
|\ | | | | sokol_gfx_imgui.h: bindings-friendly API cleanup.
| * fix changelog typosAndre Weissflog2025-12-051-3/+3
| |
| * sokol_gfx_imgui.h: fix msvc buildAndre Weissflog2025-12-051-1/+1
| |
| * update changelog (https://github.com/floooh/sokol/pull/1394)Andre Weissflog2025-12-051-0/+15
| |
| * fix testsAndre Weissflog2025-12-053-7/+9
| |
| * sokol_gfx_imgui.h: code and api cleanup (move state structs into implementation)Andre Weissflog2025-12-051-1121/+1144
|/
* fix changelog typosAndre Weissflog2025-12-041-2/+2
|
* Merge pull request #1393 from floooh/issue1388/new-statsAndre Weissflog2025-12-043-389/+447
|\ | | | | Clean-up sokol-gfx stats reporting
| * update changelog (https://github.com/floooh/sokol/pull/1393)Andre Weissflog2025-12-041-0/+16
| |