IDirect3DDevice9::GetDepthStencilSurface 方法 (d3d9.h)

获取 Direct3DDevice 对象拥有的深度模具表面。

语法

HRESULT GetDepthStencilSurface(
  [out, retval] IDirect3DSurface9 **ppZStencilSurface
);

参数

[out, retval] ppZStencilSurface

类型: IDirect3DSurface9**

指向 IDirect3DSurface9 接口的指针的地址,表示返回的深度模具图面。

返回值

类型: HRESULT

如果方法成功,则返回值D3D_OK。如果设备没有与之关联的深度模具缓冲区,则将D3DERR_NOTFOUND返回值。 否则,如果 方法失败,则可以D3DERR_INVALIDCALL返回值。

备注

调用此方法会增加 IDirect3DSurface9 接口上的内部引用计数。 使用此 IDirect3DSurface9 接口时调用 IUnknown::Release 失败会导致内存泄漏。

要求

   
目标平台 Windows
标头 d3d9.h (包括 D3D9.h)
Library D3D9.lib

请参阅

IDirect3DDevice9

IDirect3DDevice9::SetDepthStencilSurface