We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4437aa5 commit 8e09988Copy full SHA for 8e09988
shell/platform/tizen/tizen_vsync_waiter.cc
@@ -109,6 +109,10 @@ void TizenVsyncWaiter::TdmClientVblankCallback(
109
}
110
111
bool TizenVsyncWaiter::AsyncWaitForVsync() {
112
+ if (nullptr == flutter_engine_) {
113
+ LoggerD("flutter_engine_ is null");
114
+ return false;
115
+ }
116
if (vblank_ecore_pipe_) {
117
int event_type = VBLANK_LOOP_REQUEST;
118
ecore_pipe_write(vblank_ecore_pipe_, &event_type, sizeof(event_type));
0 commit comments