Lines Matching refs:FVF
861 …CreateVertexBuffer(unsigned int length, unsigned long usage, unsigned long FVF, D3DPOOL pool, IDir… in CreateVertexBuffer() argument
865 …9 **vertexBuffer = 0x%0.8p, void **sharedHandle = 0x%0.8p", length, usage, FVF, pool, vertexBuffer… in CreateVertexBuffer()
867 *vertexBuffer = new Direct3DVertexBuffer9(this, length, usage, FVF, pool); in CreateVertexBuffer()
1507 long Direct3DDevice9::GetFVF(unsigned long *FVF) in GetFVF() argument
1511 TRACE("unsigned long *FVF = 0x%0.8p", FVF); in GetFVF()
1513 if(!FVF) in GetFVF()
1520 *FVF = vertexDeclaration->getFVF(); in GetFVF()
1524 *FVF = 0; in GetFVF()
2727 long Direct3DDevice9::SetFVF(unsigned long FVF) in SetFVF() argument
2731 TRACE("unsigned long FVF = 0x%0.8X", FVF); in SetFVF()
2735 if(FVF != 0 || !this->vertexDeclaration) in SetFVF()
2737 Direct3DVertexDeclaration9 *vertexDeclaration = new Direct3DVertexDeclaration9(this, FVF); in SetFVF()
2750 stateRecorder->setFVF(FVF); in SetFVF()