Lines Matching defs:ppTexture
886 IWineD3DTexture **ppTexture, IUnknown *parent, const struct wined3d_parent_ops *parent_ops
898 TRACE("Format %#x (%s), Pool %#x, ppTexture %p, parent %p\n",
899 Format, debug_d3dformat(Format), Pool, ppTexture, parent);
905 *ppTexture = NULL;
919 *ppTexture = NULL;
923 *ppTexture = (IWineD3DTexture *)object;
4285 static HRESULT WINAPI IWineD3DDeviceImpl_GetTexture(IWineD3DDevice *iface, DWORD Stage, IWineD3DBaseTexture** ppTexture) {
4288 TRACE("(%p) : Stage %#x, ppTexture %p\n", This, Stage, ppTexture);
4299 *ppTexture=This->stateBlock->textures[Stage];
4300 if (*ppTexture)
4301 IWineD3DBaseTexture_AddRef(*ppTexture);
4303 TRACE("(%p) : Returning %p\n", This, *ppTexture);