Texture2D::GatherRed (S,float,int) 函数
对于将在双线性筛选操作中使用的四个纹素值, 返回其红色分量与比较值的比较。
语法
TemplateType GatherRed(
in sampler s,
in float2 location,
in int2 offset
);
参数
-
s [in]
-
类型: 采样器
从零开始的采样器索引。
-
location [in]
-
类型: float2
示例坐标 (u,v) 。
-
offset [in]
-
类型: int2
采样前应用于纹理坐标的偏移量。
返回值
类型: TemplateType
一个四分量值,其类型与模板类型相同。
备注
纹理样本可用于双线性内插。
以下类型的着色器支持此函数:
顶点 | 外壳 | 域 | Geometry | 像素 | 计算 |
---|---|---|---|---|---|
x | x | x | x | x | x |
另请参阅