以下是 ID3D10EffectSamplerVariable 接口的简要定义:
typedef interface ID3D10EffectSamplerVariable ID3D10EffectSamplerVariable;
// ID3D10EffectSamplerVariable 接口定义
interface ID3D10EffectSamplerVariable : public ID3D10EffectVariable
{
// 获取采样器状态
HRESULT GetSampler(
[in] UINT Index,
[out] ID3D10SamplerState **ppSampler);
// 设置采样器状态
HRESULT SetSampler(
[in] UINT Index,
[in] ID3D10SamplerState *pSampler);
};
这个接口继承自 ID3D10EffectVariable 接口,提供了获取和设置采样器状态的方法。你可以使用 GetSampler 方法获取当前采样器状态,也可以使用 SetSampler 方法设置新的采样器状态。
转载请注明出处:http://www.zyzy.cn/article/detail/25594/Win32 API/D3d10effect.h/ID3D10EffectSamplerVariable