Lines Matching refs:volumeLevel
37 … volumeLevel[level] = new Direct3DVolume9(device, this, width, height, depth, format, pool, usage); in Direct3DVolumeTexture9()
38 volumeLevel[level]->bind(); in Direct3DVolumeTexture9()
42 volumeLevel[level] = 0; in Direct3DVolumeTexture9()
55 if(volumeLevel[level]) in ~Direct3DVolumeTexture9()
57 volumeLevel[level]->unbind(); in ~Direct3DVolumeTexture9()
58 volumeLevel[level] = 0; in ~Direct3DVolumeTexture9()
177 if(!(usage & D3DUSAGE_AUTOGENMIPMAP) || !volumeLevel[0]->hasDirtyContents()) in GenerateMipSubLevels()
186 Direct3DVolume9 *source = volumeLevel[i]; in GenerateMipSubLevels()
187 Direct3DVolume9 *dest = volumeLevel[i + 1]; in GenerateMipSubLevels()
233 volumeLevel[0]->markContentsClean(); in GenerateMipSubLevels()
291 if(level >= GetLevelCount() || !volumeLevel[level]) in GetVolumeLevel()
296 volumeLevel[level]->AddRef(); in GetVolumeLevel()
297 *volume = volumeLevel[level]; in GetVolumeLevel()
308 if(!lockedVolume || level >= GetLevelCount() || !volumeLevel[level]) in LockBox()
313 return volumeLevel[level]->LockBox(lockedVolume, box, flags); in LockBox()
322 if(level >= GetLevelCount() || !volumeLevel[level]) in UnlockBox()
327 return volumeLevel[level]->UnlockBox(); in UnlockBox()
347 if(!description || level >= GetLevelCount() || !volumeLevel[level]) in GetLevelDesc()
352 return volumeLevel[level]->GetDesc(description); in GetLevelDesc()
357 return volumeLevel[level]; in getInternalVolumeLevel()