Texture2DMS::sample。运算符函数

从提供的位置和示例索引处的资源中检索值。

语法

R sample.Operator[][](
  in uint sampleSlice,
  in uint2 pos
);

parameters

sampleSlice [in]

类型: uint

示例切片索引。

pos [in]

类型: uint2

索引位置。 组件包含 (x、y) 坐标。

返回值

类型: R

只读资源变量。

备注

用法示例

Texture2DMS<float4, 8> tex;

float4 main( float3 tcoord : texturecoord0 ) : SV_Target
{
     return s_msTexture.sample[2][tcoord];
}

以下类型的着色器支持此函数:

顶点 外壳 Geometry 像素 计算
x x x x x x

 

请参阅

Texture2DMS

着色器模型 5