- Fix link resolution with proper relative/absolute path handling - Improve link styling with underline decoration - Hide leaf nodes from tree, only show directories - Fix log file path for packaged app
21 lines
318 B
Markdown
21 lines
318 B
Markdown
# OpenGLFence::Signal
|
|
|
|
```cpp
|
|
void Signal() override
|
|
void Signal(uint64_t value) override
|
|
```
|
|
|
|
将栅栏设置为 signaled 状态,通知等待的线程操作完成。
|
|
|
|
**示例:**
|
|
|
|
```cpp
|
|
OpenGLFence fence;
|
|
fence.Initialize(false);
|
|
fence.Signal();
|
|
```
|
|
|
|
## 相关文档
|
|
|
|
- [OpenGLFence](fence.md) - 返回类总览
|