Skip to content

Commit 0f40523

Browse files
committed
Removed filament_view plugin
1 parent 51ba753 commit 0f40523

142 files changed

Lines changed: 0 additions & 20514 deletions

File tree

Some content is hidden

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

.github/workflows/clang-tidy.yaml

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -103,49 +103,6 @@ jobs:
103103
ninja -C buildDir install
104104
ls -laR $LIBCAMERA_STAGING
105105
106-
- name: Cache filament
107-
id: cache-filament-1-65-2
108-
uses: actions/cache@v4
109-
with:
110-
key: ${{ runner.os }}-filament-1-65-2
111-
path: |
112-
${{github.workspace}}/filament/cmake-build-release/staging/release/*
113-
114-
- name: Build Filament
115-
if: steps.cache-filament-1-65-2.outputs.cache-hit != 'true'
116-
working-directory: ${{github.workspace}}
117-
run: |
118-
git clone -b release https://github.com/google/filament.git
119-
cd filament
120-
git checkout v1.65.2
121-
PATCHES=${{github.workspace}}/.github/workflows/patches
122-
git apply $PATCHES/filament/0001-disable-backend-tests-1.65.2.patch
123-
git apply $PATCHES/filament/0002-install-required-files.patch
124-
git apply $PATCHES/filament/0003-move-include-contents-to-include-filament.patch
125-
git apply $PATCHES/filament/0004-move-libraries-so-they-install-1.65.2.patch
126-
git apply $PATCHES/filament/0005-spirv-tools-threads.patch
127-
FILAMENT_BUILD_DIR=$PWD/cmake-build-release
128-
FILAMENT_STAGING_DIR=${FILAMENT_BUILD_DIR}/staging/release
129-
mkdir -p $FILAMENT_BUILD_DIR
130-
cd $FILAMENT_BUILD_DIR
131-
CC=/usr/bin/clang CXX=/usr/bin/clang++ \
132-
cmake .. -GNinja \
133-
-DFILAMENT_SUPPORTS_VULKAN=ON \
134-
-DFILAMENT_ENABLE_LTO=OFF \
135-
-DFILAMENT_SUPPORTS_OPENGL=OFF \
136-
-DFILAMENT_USE_EXTERNAL_GLES3=OFF \
137-
-DFILAMENT_SUPPORTS_WAYLAND=ON \
138-
-DFILAMENT_SUPPORTS_X11=OFF \
139-
-DFILAMENT_SUPPORTS_XCB=OFF \
140-
-DFILAMENT_SUPPORTS_EGL_ON_LINUX=OFF \
141-
-DFILAMENT_SKIP_SDL2=ON \
142-
-DFILAMENT_SKIP_SAMPLES=ON \
143-
-DFILAMENT_USE_SWIFTSHADER=OFF \
144-
-DBUILD_SHARED_LIBS=OFF \
145-
-DCMAKE_STAGING_PREFIX=${FILAMENT_STAGING_DIR} \
146-
-DCMAKE_BUILD_TYPE=Release
147-
ninja -C . install
148-
149106
- name: Configure CMake
150107
working-directory: ${{github.workspace}}
151108
run: |
@@ -176,9 +133,6 @@ jobs:
176133
-D BUILD_PLUGIN_COMP_REGION=OFF \
177134
-D BUILD_PLUGIN_COMP_SURF=OFF \
178135
-D BUILD_PLUGIN_DESKTOP_WINDOW_LINUX=ON \
179-
-D BUILD_PLUGIN_FILAMENT_VIEW=ON \
180-
-D FILAMENT_INCLUDE_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/include \
181-
-D FILAMENT_LINK_LIBRARIES_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/lib/x86_64 \
182136
-D BUILD_PLUGIN_FILE_SELECTOR=ON \
183137
-D BUILD_PLUGIN_FIREBASE_AUTH=OFF \
184138
-D BUILD_PLUGIN_FIREBASE_CORE=OFF \
@@ -225,9 +179,6 @@ jobs:
225179
-warnings-as-errors='*,-bugprone-macro-parentheses' \
226180
-export-fixes=tidy-results-suggested-fixes.txt \
227181
-extra-arg='-I${{github.workspace}}/ivi-homescreen/build/third_party/waypp/waypp/protocols' \
228-
-extra-arg='-I${{github.workspace}}/filament/cmake-build-release/staging/release/include' \
229-
-extra-arg='-I${{github.workspace}}/filament/cmake-build-release/staging/release/include/filament' \
230-
-extra-arg='-I${{github.workspace}}/filament/lib/utils/include' \
231182
$FILE_LIST > tidy-results-log.txt
232183
233184
- name: Show results

.github/workflows/codeql.yml

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -141,50 +141,6 @@ jobs:
141141
ninja -C buildDir install
142142
ls -laR $LIBCAMERA_STAGING
143143
144-
- name: Cache filament
145-
id: cache-filament
146-
uses: actions/cache@v4
147-
with:
148-
key: ${{ runner.os }}-filament
149-
path: |
150-
${{github.workspace}}/filament/cmake-build-release/staging/release/*
151-
152-
- name: Build Filament
153-
if: steps.cache-filament.outputs.cache-hit != 'true'
154-
working-directory: ${{github.workspace}}
155-
run: |
156-
git clone -b release https://github.com/google/filament.git
157-
cd filament
158-
git checkout v1.56.7
159-
PATCHES=${{github.workspace}}/.github/workflows/patches
160-
git apply $PATCHES/filament/0001-disable-backend-tests.patch
161-
git apply $PATCHES/filament/0002-install-required-files.patch
162-
git apply $PATCHES/filament/0003-move-include-contents-to-include-filament.patch
163-
git apply $PATCHES/filament/0004-move-libraries-so-they-install.patch
164-
git apply $PATCHES/filament/0005-return-shader-type-mobile-for-linux-vulkan.patch
165-
166-
FILAMENT_BUILD_DIR=$PWD/cmake-build-release
167-
FILAMENT_STAGING_DIR=${FILAMENT_BUILD_DIR}/staging/release
168-
mkdir -p $FILAMENT_BUILD_DIR
169-
cd $FILAMENT_BUILD_DIR
170-
CC=/usr/bin/clang CXX=/usr/bin/clang++ \
171-
cmake .. -GNinja \
172-
-DFILAMENT_SUPPORTS_VULKAN=ON \
173-
-DFILAMENT_ENABLE_LTO=ON \
174-
-DFILAMENT_SUPPORTS_OPENGL=OFF \
175-
-DFILAMENT_USE_EXTERNAL_GLES3=OFF \
176-
-DFILAMENT_SUPPORTS_WAYLAND=ON \
177-
-DFILAMENT_SUPPORTS_X11=OFF \
178-
-DFILAMENT_SUPPORTS_XCB=OFF \
179-
-DFILAMENT_SUPPORTS_EGL_ON_LINUX=OFF \
180-
-DFILAMENT_SKIP_SDL2=ON \
181-
-DFILAMENT_SKIP_SAMPLES=ON \
182-
-DFILAMENT_USE_SWIFTSHADER=OFF \
183-
-DBUILD_SHARED_LIBS=OFF \
184-
-DCMAKE_STAGING_PREFIX=${FILAMENT_STAGING_DIR} \
185-
-DCMAKE_BUILD_TYPE=Release
186-
ninja -C . install
187-
188144
- name: Configure
189145
run: |
190146
find /usr -iname "llvm-config*"
@@ -214,9 +170,6 @@ jobs:
214170
-D BUILD_PLUGIN_COMP_REGION=OFF \
215171
-D BUILD_PLUGIN_COMP_SURF=OFF \
216172
-D BUILD_PLUGIN_DESKTOP_WINDOW_LINUX=ON \
217-
-D BUILD_PLUGIN_FILAMENT_VIEW=ON \
218-
-D FILAMENT_INCLUDE_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/include \
219-
-D FILAMENT_LINK_LIBRARIES_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/lib/x86_64 \
220173
-D BUILD_PLUGIN_FILE_SELECTOR=ON \
221174
-D BUILD_PLUGIN_FIREBASE_AUTH=OFF \
222175
-D BUILD_PLUGIN_FIREBASE_CORE=OFF \

.github/workflows/ivi-homescreen.yaml

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -101,49 +101,6 @@ jobs:
101101
ninja -C buildDir install
102102
ls -laR $LIBCAMERA_STAGING
103103
104-
- name: Cache filament
105-
id: cache-filament-1-65-2
106-
uses: actions/cache@v4
107-
with:
108-
key: ${{ runner.os }}-filament-1-65-2
109-
path: |
110-
${{github.workspace}}/filament/cmake-build-release/staging/release/*
111-
112-
- name: Build Filament
113-
if: steps.cache-filament-1-65-2.outputs.cache-hit != 'true'
114-
working-directory: ${{github.workspace}}
115-
run: |
116-
git clone -b release https://github.com/google/filament.git
117-
cd filament
118-
git checkout v1.65.2
119-
PATCHES=${{github.workspace}}/.github/workflows/patches
120-
git apply $PATCHES/filament/0001-disable-backend-tests-1.65.2.patch
121-
git apply $PATCHES/filament/0002-install-required-files.patch
122-
git apply $PATCHES/filament/0003-move-include-contents-to-include-filament.patch
123-
git apply $PATCHES/filament/0004-move-libraries-so-they-install-1.65.2.patch
124-
git apply $PATCHES/filament/0005-spirv-tools-threads.patch
125-
FILAMENT_BUILD_DIR=$PWD/cmake-build-release
126-
FILAMENT_STAGING_DIR=${FILAMENT_BUILD_DIR}/staging/release
127-
mkdir -p $FILAMENT_BUILD_DIR
128-
cd $FILAMENT_BUILD_DIR
129-
CC=/usr/bin/clang CXX=/usr/bin/clang++ \
130-
cmake .. -GNinja \
131-
-DFILAMENT_SUPPORTS_VULKAN=ON \
132-
-DFILAMENT_ENABLE_LTO=OFF \
133-
-DFILAMENT_SUPPORTS_OPENGL=OFF \
134-
-DFILAMENT_USE_EXTERNAL_GLES3=OFF \
135-
-DFILAMENT_SUPPORTS_WAYLAND=ON \
136-
-DFILAMENT_SUPPORTS_X11=OFF \
137-
-DFILAMENT_SUPPORTS_XCB=OFF \
138-
-DFILAMENT_SUPPORTS_EGL_ON_LINUX=OFF \
139-
-DFILAMENT_SKIP_SDL2=ON \
140-
-DFILAMENT_SKIP_SAMPLES=ON \
141-
-DFILAMENT_USE_SWIFTSHADER=OFF \
142-
-DBUILD_SHARED_LIBS=OFF \
143-
-DCMAKE_STAGING_PREFIX=${FILAMENT_STAGING_DIR} \
144-
-DCMAKE_BUILD_TYPE=Release
145-
ninja -C . install
146-
147104
- name: Configure Debug
148105
run: |
149106
mkdir -p ${{github.workspace}}/build/debug
@@ -177,9 +134,6 @@ jobs:
177134
-D BUILD_PLUGIN_COMP_REGION=OFF \
178135
-D BUILD_PLUGIN_COMP_SURF=OFF \
179136
-D BUILD_PLUGIN_DESKTOP_WINDOW_LINUX=ON \
180-
-D BUILD_PLUGIN_FILAMENT_VIEW=ON \
181-
-D FILAMENT_INCLUDE_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/include \
182-
-D FILAMENT_LINK_LIBRARIES_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/lib/x86_64 \
183137
-D BUILD_PLUGIN_FILE_SELECTOR=ON \
184138
-D BUILD_PLUGIN_FIREBASE_AUTH=OFF \
185139
-D BUILD_PLUGIN_FIREBASE_CORE=OFF \
@@ -254,9 +208,6 @@ jobs:
254208
-D BUILD_PLUGIN_COMP_REGION=OFF \
255209
-D BUILD_PLUGIN_COMP_SURF=OFF \
256210
-D BUILD_PLUGIN_DESKTOP_WINDOW_LINUX=ON \
257-
-D BUILD_PLUGIN_FILAMENT_VIEW=ON \
258-
-D FILAMENT_INCLUDE_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/include \
259-
-D FILAMENT_LINK_LIBRARIES_DIR=${{github.workspace}}/filament/cmake-build-release/staging/release/lib/x86_64 \
260211
-D BUILD_PLUGIN_FILE_SELECTOR=ON \
261212
-D BUILD_PLUGIN_FIREBASE_AUTH=OFF \
262213
-D BUILD_PLUGIN_FIREBASE_CORE=OFF \

.github/workflows/patches/filament/0001-disable-backend-tests-1.65.2.patch

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/patches/filament/0002-install-required-files.patch

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)