Skip to content

Commit c851a30

Browse files
committed
Rename renderer/backend to core/rhi
1 parent ef51831 commit c851a30

File tree

348 files changed

+19756
-7505
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

348 files changed

+19756
-7505
lines changed

1k/1kiss.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,6 +995,11 @@ function setup_axslcc() {
995995
return $axslcc_prog
996996
}
997997

998+
$axslcc_prog = (Join-Path $axslcc_bin "axslcc$EXE_SUFFIX")
999+
if($1k.isfile($axslcc_prog)) {
1000+
$1k.del($axslcc_prog)
1001+
}
1002+
9981003
$suffix = @('win64.zip', 'linux.tar.gz', 'osx{0}.tar.gz')[$HOST_OS_INT]
9991004
if ($IsMacOS) {
10001005
if ([System.VersionEx]$axslcc_ver -ge [System.VersionEx]'1.9.4.1') {
@@ -1008,7 +1013,6 @@ function setup_axslcc() {
10081013
$glscc_base_url = $mirror_current.axslcc
10091014
fetch_pkg "$mirror_url_base$glscc_base_url/v$axslcc_ver/axslcc-$axslcc_ver-$suffix" -exrep "axslcc"
10101015

1011-
$axslcc_prog = (Join-Path $axslcc_bin "axslcc$EXE_SUFFIX")
10121016
if ($1k.isfile($axslcc_prog)) {
10131017
$1k.println("Using axslcc: $axslcc_prog, version: $axslcc_ver")
10141018
} else {

1k/build.profiles

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55

66
# --- region platfom:common
77

8-
# The axmol shader compiler, legacy name is 'glslcc' before axmol-2.3.0
9-
axslcc=1.10.0+
8+
# The axmol shader compiler,
9+
# before axmol-2.3.0, it's 'glslcc'
10+
# before axmol-3.0.0, it's 'axslcc'
11+
axslcc=1.11.0+
1012

1113
# The cmake, @gradle @axmol-cmdline
1214
# as latest as possible

1k/manifest.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $manifest['cmdlinetools'] = $build_profiles['cmdlinetools']
2525
$Global:build_profiles = $build_profiles
2626

2727
$Global:download_path = $1k.realpath("$PSScriptRoot/../cache")
28-
28+
2929
# add or overwrite tool version like follow
3030
if ($Global:is_axmol_app -or $Global:is_axmol_engine) {
3131
$manifest['axslcc'] = $build_profiles['axslcc']

3rdparty/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@
8686
- Version: 3.4 with modified for create as win32 child window support
8787
- License: zlib
8888

89+
## ghc (iOS < 13 ONLY)
90+
- [![Upstream](https://img.shields.io/github/v/release/gulrak/filesystem?label=Upstream)](https://github.com/gulrak/filesystem)
91+
- Version: 1.5.14
92+
- License: MIT
93+
8994
## jni.hpp
9095
- [![Upstream](https://img.shields.io/github/v/release/mapbox/jni.hpp?label=Upstream)](https://github.com/mapbox/jni.hpp)
9196
- Version: v4.0.0

0 commit comments

Comments
 (0)