diff --git a/ci/tizen/build_llvm.sh b/ci/tizen/build_llvm.sh index 84b4faf6228fe..7cf97968bf121 100755 --- a/ci/tizen/build_llvm.sh +++ b/ci/tizen/build_llvm.sh @@ -18,7 +18,7 @@ else cd llvm-project git init git remote add origin https://github.com/llvm/llvm-project.git - git fetch --depth=1 origin aaaf8e4c409f080f35ea227b20dc6ac8a45c2fa4 + git fetch --depth=1 origin llvmorg-17.0.6 git checkout FETCH_HEAD fi diff --git a/shell/common/rasterizer.cc b/shell/common/rasterizer.cc index 19d2d4f367a1e..dd6e38a480391 100644 --- a/shell/common/rasterizer.cc +++ b/shell/common/rasterizer.cc @@ -319,8 +319,7 @@ std::unique_ptr Rasterizer::MakeSkiaGpuImage( // https://github.com/flutter/flutter/issues/108835 #if FML_OS_LINUX return MakeBitmapImage(display_list, image_info); -#endif - +#else std::unique_ptr result; delegate_.GetIsGpuDisabledSyncSwitch()->Execute( fml::SyncSwitch::Handlers() @@ -372,6 +371,7 @@ std::unique_ptr Rasterizer::MakeSkiaGpuImage( texture, sk_ref_sp(context), nullptr, ""); })); return result; +#endif } sk_sp Rasterizer::MakeRasterSnapshot(sk_sp display_list, diff --git a/shell/common/rasterizer.h b/shell/common/rasterizer.h index a54dd677a2fdb..39ac7586f83b6 100644 --- a/shell/common/rasterizer.h +++ b/shell/common/rasterizer.h @@ -598,7 +598,7 @@ class Rasterizer final : public SnapshotDelegate, static bool ShouldResubmitFrame(const RasterStatus& raster_status); Delegate& delegate_; - MakeGpuImageBehavior gpu_image_behavior_; + [[maybe_unused]] MakeGpuImageBehavior gpu_image_behavior_; std::weak_ptr impeller_context_; std::unique_ptr surface_; std::unique_ptr snapshot_surface_producer_;