Searched defs:convertedDecls (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Dd3d9_private.h187 IDirect3DVertexDeclaration9 **convertedDecls; member in struct:IDirect3DDevice9Impl
H A Ddevice.c278 IDirect3DVertexDeclaration9Impl_Destroy(This->convertedDecls[i]);
280 HeapFree(GetProcessHeap(), 0, This->convertedDecls);
2383 IDirect3DVertexDeclaration9 **convertedDecls = This->convertedDecls; local
2392 if(((IDirect3DVertexDeclaration9Impl *) convertedDecls[p])->convFVF == fvf) {
2393 TRACE("found %p\n", convertedDecls[p]);
2394 return convertedDecls[p];
2395 } else if(((IDirect3DVertexDeclaration9Impl *) convertedDecls[p])->convFVF < fvf) {
2412 convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Ddevice.c2204 struct FvfToDecl *convertedDecls = device->decls; local
2217 if (convertedDecls[p].fvf == fvf)
2219 TRACE("found %p\n", convertedDecls[p].declaration);
2220 return convertedDecls[p].declaration;
2223 if (convertedDecls[p].fvf < fvf)
2244 convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
2245 sizeof(*convertedDecls) * (device->numConvertedDecls + grow));
2246 if (!convertedDecls)
2251 device->decls = convertedDecls;
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Ddevice.c1815 struct FvfToDecl *convertedDecls = This->decls; local
1824 if(convertedDecls[p].fvf == fvf) {
1825 TRACE("found %p\n", convertedDecls[p].decl);
1826 return (IDirect3DVertexDeclaration8Impl *)convertedDecls[p].decl;
1827 } else if(convertedDecls[p].fvf < fvf) {
1852 convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
1853 sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
1854 if(!convertedDecls) {
1859 This->decls = convertedDecls;
[all...]

Completed in 86 milliseconds