28 lines
470 B
Markdown
28 lines
470 B
Markdown
# OpenGLSampler::GetID
|
|
|
|
```cpp
|
|
unsigned int GetID() const;
|
|
unsigned int GetID() override;
|
|
```
|
|
|
|
获取 OpenGL 采样器对象 ID。返回 `glGenSamplers` 生成的采样器对象名称。
|
|
|
|
**参数:** 无
|
|
|
|
**返回:** `unsigned int` - OpenGL 采样器 ID
|
|
|
|
**线程安全:** ❌
|
|
|
|
**复杂度:** O(1)
|
|
|
|
**示例:**
|
|
|
|
```cpp
|
|
unsigned int samplerID = sampler.GetID();
|
|
glBindSampler(0, samplerID);
|
|
```
|
|
|
|
## 相关文档
|
|
|
|
- [OpenGLSampler](sampler.md) - 返回类总览
|