Lines Matching defs:container
181 * texture name is managed by the VolumeTexture container
204 if (!This->container) {
205 ERR("Volume without an container. Should not happen.\n");
210 return IUnknown_QueryInterface(This->container, riid, ppContainer);
289 if (NULL != This->container) {
291 IWineD3DVolumeTexture *cont = (IWineD3DVolumeTexture*) This->container;
299 FIXME("Set dirty on container type %d\n", containerType);
324 static HRESULT WINAPI IWineD3DVolumeImpl_SetContainer(IWineD3DVolume *iface, IWineD3DBase* container) {
327 TRACE("This %p, container %p\n", This, container);
329 /* We can't keep a reference to the container, since the container already keeps a reference to us. */
331 TRACE("Setting container to %p from %p\n", container, This->container);
332 This->container = container;