Home
last modified time | relevance | path

Searched refs:vertexElement (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/D3D9/
DDirect3DVertexDeclaration9.cpp26 …DVertexDeclaration9(Direct3DDevice9 *device, const D3DVERTEXELEMENT9 *vertexElement) : device(devi… in Direct3DVertexDeclaration9() argument
29 const D3DVERTEXELEMENT9 *element = vertexElement; in Direct3DVertexDeclaration9()
44 this->vertexElement = new D3DVERTEXELEMENT9[numElements]; in Direct3DVertexDeclaration9()
45 memcpy(this->vertexElement, vertexElement, size); in Direct3DVertexDeclaration9()
54 vertexElement = new D3DVERTEXELEMENT9[MAX_VERTEX_INPUTS]; in Direct3DVertexDeclaration9()
66 vertexElement[numElements].Stream = 0; in Direct3DVertexDeclaration9()
67 vertexElement[numElements].Offset = offset; in Direct3DVertexDeclaration9()
68 vertexElement[numElements].Type = D3DDECLTYPE_FLOAT3; in Direct3DVertexDeclaration9()
69 vertexElement[numElements].Method = D3DDECLMETHOD_DEFAULT; in Direct3DVertexDeclaration9()
70 vertexElement[numElements].Usage = D3DDECLUSAGE_POSITION; in Direct3DVertexDeclaration9()
[all …]
DDirect3DVertexDeclaration9.hpp52 D3DVERTEXELEMENT9 *vertexElement; member in D3D9::Direct3DVertexDeclaration9
DDirect3DDevice9.cpp5680 D3DVERTEXELEMENT9 vertexElement[MAXD3DDECLLENGTH + 1]; in instanceData() local
5682 vertexDeclaration->GetDeclaration(vertexElement, &numElements); in instanceData()
5688 unsigned short stream = vertexElement[i].Stream; in instanceData()
5720 D3DVERTEXELEMENT9 vertexElement[MAXD3DDECLLENGTH + 1]; in bindVertexStreams() local
5722 vertexDeclaration->GetDeclaration(vertexElement, &numElements); in bindVertexStreams()
5727 unsigned short stream = vertexElement[i].Stream; in bindVertexStreams()
5728 unsigned short offset = vertexElement[i].Offset; in bindVertexStreams()
5729 unsigned char type = vertexElement[i].Type; in bindVertexStreams()
5730 unsigned char method = vertexElement[i].Method; in bindVertexStreams()
5731 unsigned char usage = vertexElement[i].Usage; in bindVertexStreams()
[all …]
/external/swiftshader/src/D3D8/
DDirect3DVertexDeclaration8.cpp23 …ect3DVertexDeclaration8(Direct3DDevice8 *device, const unsigned long *vertexElement) : device(devi… in Direct3DVertexDeclaration8() argument
26 const unsigned long *element = vertexElement; in Direct3DVertexDeclaration8()
35 memcpy(declaration, vertexElement, size); in Direct3DVertexDeclaration8()