mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebased
Add Swappy & Pre-Transformed Swapchain
This commit is contained in:
commit
748f4079e3
23 changed files with 1064 additions and 14 deletions
17
.github/workflows/android_builds.yml
vendored
17
.github/workflows/android_builds.yml
vendored
|
@ -24,19 +24,19 @@ jobs:
|
|||
cache-name: android-editor
|
||||
target: editor
|
||||
tests: false
|
||||
sconsflags: arch=arm64 production=yes
|
||||
sconsflags: arch=arm64 production=yes swappy=yes
|
||||
|
||||
- name: Template arm32 (target=template_release, arch=arm32)
|
||||
cache-name: android-template-arm32
|
||||
target: template_release
|
||||
tests: false
|
||||
sconsflags: arch=arm32
|
||||
sconsflags: arch=arm32 swappy=yes
|
||||
|
||||
- name: Template arm64 (target=template_release, arch=arm64)
|
||||
cache-name: android-template-arm64
|
||||
target: template_release
|
||||
tests: false
|
||||
sconsflags: arch=arm64
|
||||
sconsflags: arch=arm64 swappy=yes
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
@ -59,6 +59,17 @@ jobs:
|
|||
- name: Setup Python and SCons
|
||||
uses: ./.github/actions/godot-deps
|
||||
|
||||
- name: Download pre-built Android Swappy Frame Pacing Library
|
||||
uses: dsaltares/fetch-gh-release-asset@1.1.2
|
||||
with:
|
||||
repo: darksylinc/godot-swappy
|
||||
version: tags/v2023.3.0.0
|
||||
file: godot-swappy.7z
|
||||
target: swappy/godot-swappy.7z
|
||||
|
||||
- name: Extract pre-built Android Swappy Frame Pacing Library
|
||||
run: 7za x -y swappy/godot-swappy.7z -o${{github.workspace}}/thirdparty/swappy-frame-pacing
|
||||
|
||||
- name: Compilation
|
||||
uses: ./.github/actions/godot-build
|
||||
with:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue