From e8ae7193ee38d60aa6d3cda0e82553c4cb7ed3c6 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Thu, 19 Sep 2024 21:09:23 +0800 Subject: [PATCH] update unproject texture to accept input texture --- thermion_dart/native/include/FilamentViewer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thermion_dart/native/include/FilamentViewer.hpp b/thermion_dart/native/include/FilamentViewer.hpp index 6f26b3e3..4fb91590 100644 --- a/thermion_dart/native/include/FilamentViewer.hpp +++ b/thermion_dart/native/include/FilamentViewer.hpp @@ -151,7 +151,7 @@ namespace thermion_filament return (SceneManager *const)_sceneManager; } - void unprojectTexture(EntityId entity, uint8_t* out, uint32_t outWidth, uint32_t outHeight); + void unprojectTexture(EntityId entity, uint8_t* input, uint32_t inputWidth, uint32_t inputHeight, uint8_t* out, uint32_t outWidth, uint32_t outHeight); private: const ResourceLoaderWrapperImpl *const _resourceLoaderWrapper;