diff --git a/impeller/display_list/dl_unittests.cc b/impeller/display_list/dl_unittests.cc index c59ca6b01056d..9e0456d50db5d 100644 --- a/impeller/display_list/dl_unittests.cc +++ b/impeller/display_list/dl_unittests.cc @@ -1390,7 +1390,7 @@ TEST_P(DisplayListTest, DrawVerticesSolidColorTrianglesWithoutIndices) { auto vertices = flutter::DlVertices::Make( flutter::DlVertexMode::kTriangles, 3, positions.data(), - /*texture_coorindates=*/nullptr, colors.data()); + /*texture_coordinates=*/nullptr, colors.data()); flutter::DisplayListBuilder builder; flutter::DlPaint paint; @@ -1409,7 +1409,7 @@ TEST_P(DisplayListTest, DrawVerticesLinearGradientWithoutIndices) { auto vertices = flutter::DlVertices::Make( flutter::DlVertexMode::kTriangles, 3, positions.data(), - /*texture_coorindates=*/nullptr, /*colors=*/nullptr); + /*texture_coordinates=*/nullptr, /*colors=*/nullptr); std::vector colors = {flutter::DlColor::kBlue(), flutter::DlColor::kRed()}; @@ -1519,7 +1519,7 @@ TEST_P(DisplayListTest, DrawVerticesSolidColorTrianglesWithIndices) { auto vertices = flutter::DlVertices::Make( flutter::DlVertexMode::kTriangles, 6, positions.data(), - /*texture_coorindates=*/nullptr, /*colors=*/nullptr, 6, indices.data()); + /*texture_coordinates=*/nullptr, /*colors=*/nullptr, 6, indices.data()); flutter::DisplayListBuilder builder; flutter::DlPaint paint; @@ -1540,7 +1540,7 @@ TEST_P(DisplayListTest, DrawVerticesPremultipliesColors) { auto vertices = flutter::DlVertices::Make( flutter::DlVertexMode::kTriangles, 6, positions.data(), - /*texture_coorindates=*/nullptr, colors.data(), 6, indices.data()); + /*texture_coordinates=*/nullptr, colors.data(), 6, indices.data()); flutter::DisplayListBuilder builder; flutter::DlPaint paint; @@ -1668,7 +1668,7 @@ TEST_P(DisplayListTest, DrawVerticesBlendModes) { auto vertices = flutter::DlVertices::Make( flutter::DlVertexMode::kTriangles, 3, positions.data(), - /*texture_coorindates=*/nullptr, colors.data()); + /*texture_coordinates=*/nullptr, colors.data()); flutter::DisplayListBuilder builder; flutter::DlPaint paint; diff --git a/shell/platform/android/external_view_embedder/external_view_embedder.cc b/shell/platform/android/external_view_embedder/external_view_embedder.cc index d29a80eb16a8c..a0e516e4c10a2 100644 --- a/shell/platform/android/external_view_embedder/external_view_embedder.cc +++ b/shell/platform/android/external_view_embedder/external_view_embedder.cc @@ -79,7 +79,7 @@ void AndroidExternalViewEmbedder::SubmitFrame( // Restore the clip context after exiting this method since it's changed // below. - DlAutoCanvasRestore save(background_canvas, /*doSave=*/true); + DlAutoCanvasRestore save(background_canvas, /*do_save=*/true); for (size_t i = 0; i < current_frame_view_count; i++) { int64_t view_id = composition_order_[i];