mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-14 06:58:35 +00:00
There are now a few freetype-specific functions in the API so we need seperate bindgen output for it Duplicates the imgui code somewhat unnecessarily, but shouldn't impact repo size much due to git's compression
12 lines
516 B
Bash
Executable File
12 lines
516 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR=$(dirname ${0} | python3 -c 'import os, sys; print(os.path.abspath(sys.stdin.read().strip()))' )
|
|
|
|
cd ${SCRIPT_DIR}
|
|
./_update-imgui.sh ~/code/vendor/imgui v1.89.1 ./imgui-master/imgui
|
|
./_update-imgui.sh ~/code/vendor/imgui 540909bddf2f2b094a650b4bf5d01757fbd69418 ./imgui-docking/imgui
|
|
|
|
./_update-imgui.sh ~/code/vendor/imgui v1.89.1 ./imgui-master-freetype/imgui
|
|
./_update-imgui.sh ~/code/vendor/imgui 540909bddf2f2b094a650b4bf5d01757fbd69418 ./imgui-docking-freetype/imgui
|