texture_view::operator() 演算子

インデックスごとの要素の値を返します。

const value_type operator() (
   const index<_Rank>& _Index
) const restrict(amp);

const value_type operator() (
   int _I0
) const restrict(amp);

const value_type operator() (
   int _I0,
   int _I1
) const restrict(amp);

const value_type operator() (
   int _I0,
   int _I1,
   int _I2
) const restrict(amp);

value_type operator() (
   const index<_Rank>& _Index
) const restrict(amp);

value_type operator() (
   int _I0
) const restrict(amp);

value_type operator() (
   int _I0,
   int _I1
) const restrict(amp);

value_type operator() (
   int _I0,
   int _I1,
   int _I2
) const restrict(amp);

パラメーター

  • _Index
    場合によっては多次元の、インデックス。

  • _I0
    インデックスの最上位のコンポーネント。

  • _I1
    インデックスの最上位の次のコンポーネント。

  • _I2
    インデックスの最下位のコンポーネント。

戻り値

_Index でインデックス付けされている要素の値。

必要条件

ヘッダー: amp_graphics.h

名前空間: concurrency::graphics

参照

関連項目

texture_view クラス