asc_load3d_v2_config
asc_load3d_v2_config用 于 设 置Load3Dv2接 口 的repeat参 数。
结 构 体 具 体 定 义
C++
constexpr uint64_t ASC_DEFAULT_LOAD3D_V2_CONFIG_VALUE = 0x0000000000010000;
union asc_load3d_v2_config {
uint64_t config = ASC_DEFAULT_LOAD3D_V2_CONFIG_VALUE;
struct {
uint64_t rpt_stride : 16;
uint64_t rpt_time : 8;
uint64_t rpt_mode : 1;
uint64_t reserved2 : 39;
};
};
字 段 详 解
| 字 段 名 | 字 段 含 义 |
|---|---|
| rpt_stride | height/width方 向 上 的 前 一 个 迭 代 与 后 一 个 迭 代 起 始 地 址 的 距 离,取 值 范 围:[0, 65535],默 认 值 为0。 |
| rpt_time | height/width方 向 上 的 迭 代 次 数,取 值 范 围:[0, 255],默 认 值 为1。 |
| rpt_mode | 控 制repeat迭 代 的 方 向,取 值 范 围:[0, 1],默 认 值 为0。 0:迭 代 沿height方 向; 1:迭 代 沿width方 向。 |