Lines Matching refs:Format
33 Direct3DVolume9::Direct3DVolume9(Direct3DDevice9 *device, Direct3DVolumeTexture9 *container, int width, int height, int depth, D3DFORMAT format, D3DPOOL pool, unsigned long usage) : device(device), Surface(container->getResource(), width, height, depth, translateFormat(format), isLockable(pool, usage), false), container(container), width(width), height(height), depth(depth), format(format), pool(pool), lockable(isLockable(pool, usage)), usage(usage)
35 resource = new Direct3DResource9(device, D3DRTYPE_VOLUME, pool, memoryUsage(width, height, depth, format));
119 description->Format = format;
215 sw::Format Direct3DVolume9::translateFormat(D3DFORMAT format)
217 return Direct3DSurface9::translateFormat(format);
220 unsigned int Direct3DVolume9::memoryUsage(int width, int height, int depth, D3DFORMAT format)
222 return Surface::size(width, height, depth, translateFormat(format));