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

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Ddevice.c1240 static HRESULT WINAPI IDirect3DDevice8Impl_SetClipPlane(LPDIRECT3DDEVICE8 iface, DWORD Index,CONST float* pPlane) { argument
1244 TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
1247 hr = IWineD3DDevice_SetClipPlane(This->WineD3DDevice, Index, pPlane);
1253 static HRESULT WINAPI IDirect3DDevice8Impl_GetClipPlane(LPDIRECT3DDEVICE8 iface, DWORD Index,float* pPlane) { argument
1257 TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
1260 hr = IWineD3DDevice_GetClipPlane(This->WineD3DDevice, Index, pPlane);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddevice.c1764 static HRESULT WINAPI IDirect3DDevice9Impl_SetClipPlane(LPDIRECT3DDEVICE9EX iface, DWORD Index, CONST float* pPlane) { argument
1768 TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
1771 hr = IWineD3DDevice_SetClipPlane(This->WineD3DDevice, Index, pPlane);
1778 static HRESULT WINAPI IDirect3DDevice9Impl_GetClipPlane(LPDIRECT3DDEVICE9EX iface, DWORD Index, float* pPlane) { argument
1782 TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
1785 hr = IWineD3DDevice_GetClipPlane(This->WineD3DDevice, Index, pPlane);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddevice.c2632 static HRESULT WINAPI IWineD3DDeviceImpl_SetClipPlane(IWineD3DDevice *iface, DWORD Index, CONST float *pPlane) { argument
2634 TRACE("(%p) : for idx %d, %p\n", This, Index, pPlane);
2645 if(This->updateStateBlock->clipplane[Index][0] == pPlane[0] &&
2646 This->updateStateBlock->clipplane[Index][1] == pPlane[1] &&
2647 This->updateStateBlock->clipplane[Index][2] == pPlane[2] &&
2648 This->updateStateBlock->clipplane[Index][3] == pPlane[3]) {
2653 This->updateStateBlock->clipplane[Index][0] = pPlane[0];
2654 This->updateStateBlock->clipplane[Index][1] = pPlane[1];
2655 This->updateStateBlock->clipplane[Index][2] = pPlane[2];
2656 This->updateStateBlock->clipplane[Index][3] = pPlane[
2669 IWineD3DDeviceImpl_GetClipPlane(IWineD3DDevice *iface, DWORD Index, float *pPlane) argument
[all...]

Completed in 88 milliseconds