Searched defs:pRectPatchInfo (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Ddevice.c2347 static HRESULT WINAPI IDirect3DDevice8Impl_DrawRectPatch(LPDIRECT3DDEVICE8 iface, UINT Handle,CONST float* pNumSegs,CONST D3DRECTPATCH_INFO* pRectPatchInfo) { argument
2352 iface, Handle, pNumSegs, pRectPatchInfo);
2355 hr = IWineD3DDevice_DrawRectPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DRECTPATCH_INFO *)pRectPatchInfo);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddevice.c2684 static HRESULT WINAPI IDirect3DDevice9Impl_DrawRectPatch(LPDIRECT3DDEVICE9EX iface, UINT Handle, CONST float* pNumSegs, CONST D3DRECTPATCH_INFO* pRectPatchInfo) { argument
2689 iface, Handle, pNumSegs, pRectPatchInfo);
2692 hr = IWineD3DDevice_DrawRectPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DRECTPATCH_INFO *)pRectPatchInfo);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddevice.c5627 static HRESULT WINAPI IWineD3DDeviceImpl_DrawRectPatch(IWineD3DDevice *iface, UINT Handle, CONST float* pNumSegs, CONST WINED3DRECTPATCH_INFO* pRectPatchInfo) { argument
5634 TRACE("(%p) Handle(%d) noSegs(%p) rectpatch(%p)\n", This, Handle, pNumSegs, pRectPatchInfo);
5636 if(!(Handle || pRectPatchInfo)) {
5638 FIXME("Both Handle and pRectPatchInfo are NULL\n");
5675 (pRectPatchInfo && memcmp(pRectPatchInfo, &patch->RectPatchInfo, sizeof(*pRectPatchInfo)) != 0) ) {
5679 if(pRectPatchInfo) {
5680 patch->RectPatchInfo = *pRectPatchInfo;

Completed in 66 milliseconds