30 lines
486 B
Markdown
30 lines
486 B
Markdown
|
|
# Texture::GetHeight
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
Core::uint32 GetHeight() const
|
||
|
|
```
|
||
|
|
|
||
|
|
获取纹理高度。
|
||
|
|
|
||
|
|
**参数:** 无
|
||
|
|
|
||
|
|
**返回:** 纹理高度(像素)
|
||
|
|
|
||
|
|
**线程安全:** ✅
|
||
|
|
|
||
|
|
**示例:**
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
Texture tex;
|
||
|
|
tex.Create(1024, 512, 1, 1,
|
||
|
|
TextureType::Texture2D,
|
||
|
|
TextureFormat::RGBA8_UNORM,
|
||
|
|
nullptr, 0);
|
||
|
|
|
||
|
|
Core::uint32 height = tex.GetHeight(); // 返回 512
|
||
|
|
```
|
||
|
|
|
||
|
|
## 相关文档
|
||
|
|
|
||
|
|
- [Texture 总览](texture.md) - 返回类总览
|
||
|
|
- [GetWidth](getwidth.md) - 获取纹理宽度
|