Lines Matching refs:multiSample
39 int sampleCount(D3DMULTISAMPLE_TYPE multiSample) in sampleCount() argument
41 if(multiSample == D3DMULTISAMPLE_2_SAMPLES) in sampleCount()
45 else if(multiSample == D3DMULTISAMPLE_4_SAMPLES) in sampleCount()
49 else if(multiSample == D3DMULTISAMPLE_8_SAMPLES) in sampleCount()
53 else if(multiSample == D3DMULTISAMPLE_16_SAMPLES) in sampleCount()
61 …width, int height, D3DFORMAT format, D3DPOOL pool, D3DMULTISAMPLE_TYPE multiSample, bool lockable,… in Direct3DSurface8() argument
62 …multiSample), translateFormat(format), lockable, (usage & D3DUSAGE_RENDERTARGET) == D3DUSAGE_RENDE… in Direct3DSurface8()
66 …resource = new Direct3DResource8(device, D3DRTYPE_SURFACE, memoryUsage(width, height, multiSample,… in Direct3DSurface8()
231 desc->Size = memoryUsage(width, height, multiSample, format); in GetDesc()
232 desc->MultiSampleType = multiSample; in GetDesc()
287 …unsigned int Direct3DSurface8::memoryUsage(int width, int height, D3DMULTISAMPLE_TYPE multiSample,… in memoryUsage() argument
289 return Surface::size(width, height, 1, 0, sampleCount(multiSample), translateFormat(format)); in memoryUsage()