Lines Matching defs:volume
77 ERR("Volume should be part of a volume texture\n");
313 WARN("Trying to unlock unlocked volume %p.\n", iface);
316 TRACE("(%p) : unlocking volume\n", This);
409 HRESULT volume_init(IWineD3DVolumeImpl *volume, IWineD3DDeviceImpl *device, UINT width,
424 WARN("Volume cannot be created - no volume texture support.\n");
428 volume->lpVtbl = &IWineD3DVolume_Vtbl;
430 hr = resource_init((IWineD3DResource *)volume, WINED3DRTYPE_VOLUME, device,
442 volume->currentDesc.Width = width;
443 volume->currentDesc.Height = height;
444 volume->currentDesc.Depth = depth;
445 volume->lockable = TRUE;
446 volume->locked = FALSE;
447 memset(&volume->lockedBox, 0, sizeof(volume->lockedBox));
448 volume->dirty = TRUE;
450 volume_add_dirty_box((IWineD3DVolume *)volume, NULL);