File tree 1 file changed +11
-2
lines changed
shell/platform/fuchsia/flutter
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -327,8 +327,17 @@ void GfxExternalViewEmbedder::SubmitFrame(
327
327
const float view_elevation =
328
328
kScenicZElevationBetweenLayers * scenic_layer_index +
329
329
embedded_views_height;
330
- FML_CHECK (view_mutators.total_transform ==
331
- view_params.transformMatrix ());
330
+
331
+ if (view_mutators.total_transform != view_params.transformMatrix ()) {
332
+ FML_LOG (ERROR) << " Failed assertion: view_mutators.total_transform "
333
+ " != view_params.transformMatrix()" ;
334
+ FML_LOG (ERROR) << " view_mutators.total_transform:" ;
335
+ view_mutators.total_transform .dump ();
336
+ FML_LOG (ERROR) << " view_params.transformMatrix():" ;
337
+ view_params.transformMatrix ().dump ();
338
+ FML_LOG (FATAL) << " view_mutators.total_transform "
339
+ " != view_params.transformMatrix()" ;
340
+ }
332
341
333
342
// Set clips for the platform view.
334
343
if (view_mutators.clips != view_holder.mutators .clips ) {
You can’t perform that action at this time.
0 commit comments