Lines Matching defs:wined3d
645 IWineD3D_Release(This->wined3d);
646 This->wined3d = NULL;
1479 /* Create a 32x32 white surface to indicate that wined3d is used, but the specified image
1511 /* Fill the surface with a white color to show that wined3d is there */
2033 /* Enables thread safety in the wined3d device and its resources. Called by DirectDraw
2109 *ppD3D = This->wined3d;
4341 return IWineD3D_GetDeviceCaps(This->wined3d, This->adapter->ordinal, This->devType, pCaps);
6269 /* should we be calling the parent or the wined3d surface? */
6583 count = IWineD3D_GetAdapterModeCount(This->wined3d, This->adapter->ordinal, WINED3DFMT_UNKNOWN);
6586 hr = IWineD3D_EnumAdapterModes(This->wined3d, This->adapter->ordinal, WINED3DFMT_UNKNOWN, i, &m);
7531 HRESULT device_init(IWineD3DDeviceImpl *device, IWineD3DImpl *wined3d,
7535 struct wined3d_adapter *adapter = &wined3d->adapters[adapter_idx];
7545 device->wined3d = (IWineD3D *)wined3d;
7546 IWineD3D_AddRef(device->wined3d);
7547 device->adapter = wined3d->adapter_count ? adapter : NULL;
7553 device->surface_alignment = wined3d->dxVersion == 7 ? DDRAW_PITCH_ALIGNMENT : D3D8_PITCH_ALIGNMENT;
7557 hr = IWineD3D_GetAdapterDisplayMode((IWineD3D *)wined3d, adapter_idx, &mode);
7561 IWineD3D_Release(device->wined3d);
7601 IWineD3D_Release(device->wined3d);