Shi Yan

Results 67 issues of Shi Yan

I followed the sample code on this document https://v2.tauri.app/plugin/file-system/ ```javascript import { open, BaseDirectory } from '@tauri-apps/plugin-fs'; const file = await open('foo/bar.txt', { read: true, baseDir: BaseDirectory.App, }); const buf...

https://github.com/TaTo30/vue-pdf/blob/fbdaf443cb510f1144d83e370270fec163b33599/packages/vue-pdf/src/components/layers/AnnotationLayer.vue#L129 the above line caused : Unhandled Promise Rejection: TypeError: null is not an object (evaluating 'F.value.addEventListener') I think there might be some race condition.

bug

I'm having issues compiling the code, hitting: ``` In file included from /Users/shiy/work/folly/folly/memory/test/UninitializedMemoryHacksTest.cpp:17: In file included from /Users/shiy/work/folly/folly/memory/UninitializedMemoryHacks.h:20: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/string:821:42: error: implicit instantiation of undefined template 'std::char_traits' 8 ``` Any idea...

**Version/Branch of Dear ImGui:** f1bf642e8f9b2a2ecbe03de10743bd1e504cb3f8 Version: 1.82 WIP Branch: docking **Back-end/Renderer/Compiler/OS** Tried both opengl3 and vulkan/ sdl, gcc-8 ubuntu 18.04 on nvidia / xwindows Back-ends: imgui_impl_sdl.cpp, vulkan / opengl3 Compiler:...

backends
multi-viewports
linux/bsd

I think the cpp sample for face detection hasn't been updated: the code requests `face_detect` ```cpp INSPIRE_LAUNCH->Load("test_res/pack/Megatron"); auto archive = INSPIRE_LAUNCH->getMArchive(); auto ret = archive.LoadModel("face_detect", detModel); ``` but the models...

**Describe the bug** App crashes on mac upon app window closing crash log attached [crash.log](https://github.com/user-attachments/files/19097350/crash.log)

type: bug
platform: macOS

I’m exploring the possibility of implementing a 3D application using GPUI. After reviewing the source code, it appears that GPUI maintains its own scene graph, and developers can only modify...