feat: (flutter) (windows) add DestroyRenderingSurface method

This commit is contained in:
Nick Fisher
2024-10-23 02:24:34 +11:00
parent b6fe78b82c
commit 2536f7fc6f
2 changed files with 34 additions and 3 deletions

View File

@@ -16,6 +16,9 @@ namespace thermion_flutter {
void CreateRenderingSurface(
uint32_t width, uint32_t height,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result, uint32_t left, uint32_t top);
void DestroyRenderingSurface(std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result);
void ResizeRenderingSurface(
uint32_t width, uint32_t height, uint32_t left, uint32_t top
);