Skip to content

Commit b522e7b

Browse files
committed
Add new line end of file
1 parent 474b4c7 commit b522e7b

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

engine/src/flutter/shell/platform/embedder/embedder_external_texture_vulkan.cc

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,8 @@ void EmbedderExternalTextureVulkan::Paint(PaintContext& context,
4040
const DlImageSampling sampling) {
4141
if (last_image_ == nullptr) {
4242
last_image_ =
43-
ResolveTexture(Id(), //
44-
context.gr_context, //
45-
context.aiks_context, //
46-
SkISize::Make(bounds.GetWidth(), bounds.GetHeight()) //
47-
);
43+
ResolveTexture(Id(), context.gr_context, context.aiks_context,
44+
SkISize::Make(bounds.GetWidth(), bounds.GetHeight()));
4845
}
4946

5047
DlCanvas* canvas = context.canvas;
@@ -195,4 +192,4 @@ void EmbedderExternalTextureVulkan::MarkNewFrameAvailable() {
195192
// |flutter::Texture|
196193
void EmbedderExternalTextureVulkan::OnTextureUnregistered() {}
197194

198-
} // namespace flutter
195+
} // namespace flutter

engine/src/flutter/shell/platform/embedder/embedder_external_texture_vulkan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ class EmbedderExternalTextureVulkan : public flutter::Texture {
6161
};
6262
} // namespace flutter
6363

64-
#endif // FLUTTER_SHELL_PLATFORM_EMBEDDER_EMBEDDER_EXTERNAL_TEXTURE_VULKAN_H_
64+
#endif // FLUTTER_SHELL_PLATFORM_EMBEDDER_EMBEDDER_EXTERNAL_TEXTURE_VULKAN_H_

0 commit comments

Comments
 (0)