共用方式為


Texture2DMS::sample。運算子函式

從提供的位置和範例索引的資源擷取值。

語法

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

參數

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];
}

下列著色器類型支援此函式:

頂點 船體 網域 幾何形狀 像素 計算
x x x x x x

 

另請參閱

Texture2DMS

著色器模型 5