Searched defs:ppDecl (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Dvertexdeclaration.c439 HRESULT WINAPI IDirect3DDevice9Impl_GetVertexDeclaration(LPDIRECT3DDEVICE9EX iface, IDirect3DVertexDeclaration9** ppDecl) { argument
444 TRACE("iface %p, declaration %p.\n", iface, ppDecl);
446 if (NULL == ppDecl) {
450 *ppDecl = NULL;
455 IWineD3DVertexDeclaration_GetParent(pTest, (IUnknown **)ppDecl);
458 *ppDecl = NULL;
462 TRACE("(%p) : returning %p\n", This, *ppDecl);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddevice.c3033 static HRESULT WINAPI IWineD3DDeviceImpl_GetVertexDeclaration(IWineD3DDevice* iface, IWineD3DVertexDeclaration** ppDecl) { argument
3036 TRACE("(%p) : ppDecl=%p\n", This, ppDecl);
3038 *ppDecl = This->stateBlock->vertexDecl;
3039 if (NULL != *ppDecl) IWineD3DVertexDeclaration_AddRef(*ppDecl);

Completed in 49 milliseconds