From 2a76145b983fafb3bec0ee76504a6097120eb050 Mon Sep 17 00:00:00 2001 From: voluntas Date: Tue, 3 Oct 2023 10:16:39 +0900 Subject: [PATCH 1/4] =?UTF-8?q?CPP=20SDK=20=E3=83=90=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=82=92=E4=B8=8A=E3=81=92=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit それに伴い依存ライブラリのバージョンも上げる。 --- VERSION | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 2fb2b10..37da309 100644 --- a/VERSION +++ b/VERSION @@ -1,7 +1,7 @@ ZAKURO_VERSION=2023.1.0 -SORA_CPP_SDK_VERSION=2023.9.0 -WEBRTC_BUILD_VERSION=m115.5790.7.0 -BOOST_VERSION=1.82.0 +SORA_CPP_SDK_VERSION=2023.14.0 +WEBRTC_BUILD_VERSION=m117.5938.2.0 +BOOST_VERSION=1.83.0 LYRA_VERSION=1.3.0 CLI11_VERSION=v2.3.2 CMAKE_VERSION=3.27.6 From 525431814194305abbbed8bb625dd9a3219e76ec Mon Sep 17 00:00:00 2001 From: torikizi Date: Thu, 5 Oct 2023 22:57:59 +0900 Subject: [PATCH 2/4] =?UTF-8?q?resetMatrix()=20=E3=81=8B=E3=82=89=20reset(?= =?UTF-8?q?)=20=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/game/game_kuzushi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/game_kuzushi.h b/src/game/game_kuzushi.h index a467b9b..d59c101 100644 --- a/src/game/game_kuzushi.h +++ b/src/game/game_kuzushi.h @@ -423,7 +423,7 @@ class GameKuzushi { } if (view_help_) { - ctx.resetMatrix(); + ctx.reset(); ctx.setStrokeStyle(BLRgba32(255, 255, 255)); ctx.setFillStyle(BLRgba32(255, 255, 255)); std::string text = From 494ed8007579a9a1538669060c8db64bb29967db Mon Sep 17 00:00:00 2001 From: torikizi Date: Thu, 5 Oct 2023 22:59:37 +0900 Subject: [PATCH 3/4] =?UTF-8?q?VideoCodec=20=E3=81=AF=20Protected=20?= =?UTF-8?q?=E3=81=AE=E3=81=9F=E3=82=81=20CreateVideoCodec=20=E3=81=AB?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/zakuro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zakuro.cpp b/src/zakuro.cpp index 6fa0294..eaf79e8 100644 --- a/src/zakuro.cpp +++ b/src/zakuro.cpp @@ -364,7 +364,7 @@ int Zakuro::Run() { [openh264 = vc.openh264]( auto format) -> std::unique_ptr { return webrtc::DynamicH264VideoEncoder::Create( - cricket::VideoCodec(format), openh264); + cricket::CreateVideoCodec(format), openh264); })); media_dependencies.video_encoder_factory = absl::make_unique( From c11826cc78d81fea25e07820dc38000ffd2d5529 Mon Sep 17 00:00:00 2001 From: torikizi Date: Sun, 15 Oct 2023 17:22:24 +0900 Subject: [PATCH 4/4] =?UTF-8?q?reset()=20=E3=81=A7=E3=81=AF=E3=81=AA?= =?UTF-8?q?=E3=81=8F=20resetTransform()=20=E3=81=8C=E6=AD=A3=E3=81=97?= =?UTF-8?q?=E3=81=84=E5=A4=89=E6=9B=B4=E3=81=A0=E3=81=A3=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/game/game_kuzushi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/game_kuzushi.h b/src/game/game_kuzushi.h index d59c101..183366e 100644 --- a/src/game/game_kuzushi.h +++ b/src/game/game_kuzushi.h @@ -423,7 +423,7 @@ class GameKuzushi { } if (view_help_) { - ctx.reset(); + ctx.resetTransform(); ctx.setStrokeStyle(BLRgba32(255, 255, 255)); ctx.setFillStyle(BLRgba32(255, 255, 255)); std::string text =