gitignore fixes

This commit is contained in:
2025-06-26 22:15:43 -04:00
parent 01e989adc8
commit 3fd4e139d9
6 changed files with 19096 additions and 3 deletions

9
.gitignore vendored
View File

@ -8,8 +8,13 @@ build/**
# folders
assets/TX-02-1WN9N6Q8
thirdparty
thirdparty/**
thirdparty/backtrace
thirdparty/harfbuzz
thirdparty/ini
thirdparty/sokol
thirdparty/sokol-tools
toolchain/**
# logs
logs

26
thirdparty/stb/LICENSE vendored Normal file
View File

@ -0,0 +1,26 @@
Copyright (c) 2016-2024 Ginger Bill. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

8
thirdparty/stb/README.md vendored Normal file
View File

@ -0,0 +1,8 @@
# stb_truetype-odin
A modification of the stb_truetype vendor library.
Adds support for:
* Allocator assignement via gb/zpl allocators (essentially equivalent to odin's allocator procedure/data struct)
* Pass #by_ptr on font_info's when they are expected to be immutable (library has the proc signature as `const font_info*`)

BIN
thirdparty/stb/lib/stb_truetype.a vendored Normal file

Binary file not shown.

19055
thirdparty/stb/src/zpl/zpl.h vendored Normal file

File diff suppressed because it is too large Load Diff

Submodule toolchain/Odin deleted from 3b7833ba65