Searched defs:pWineCaps (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Ddirectx.c305 WINED3DCAPS *pWineCaps; local
312 pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
313 if(pWineCaps == NULL){
318 hrc = IWineD3D_GetDeviceCaps(This->WineD3D, Adapter, DeviceType, pWineCaps);
321 fixup_caps(pWineCaps);
322 WINECAPSTOD3D8CAPS(pCaps, pWineCaps)
323 HeapFree(GetProcessHeap(), 0, pWineCaps);
H A Ddevice.c412 WINED3DCAPS *pWineCaps; local
419 pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
420 if(pWineCaps == NULL){
425 hrc = IWineD3DDevice_GetDeviceCaps(This->WineD3DDevice, pWineCaps);
428 fixup_caps(pWineCaps);
429 WINECAPSTOD3D8CAPS(pCaps, pWineCaps)
430 HeapFree(GetProcessHeap(), 0, pWineCaps);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddirectx.c409 WINED3DCAPS *pWineCaps; local
416 pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
417 if(pWineCaps == NULL){
423 hrc = IWineD3D_GetDeviceCaps(This->WineD3D, Adapter, DeviceType, pWineCaps);
426 WINECAPSTOD3D9CAPS(pCaps, pWineCaps)
427 HeapFree(GetProcessHeap(), 0, pWineCaps);
H A Ddevice.c385 WINED3DCAPS *pWineCaps; local
393 pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
394 if(pWineCaps == NULL){
402 hrc = IWineD3DDevice_GetDeviceCaps(This->WineD3DDevice, pWineCaps);
405 WINECAPSTOD3D9CAPS(pCaps, pWineCaps)
406 HeapFree(GetProcessHeap(), 0, pWineCaps);

Completed in 51 milliseconds