2012/1/6 André Hentschel nerv@dawncrow.de:
- FIXME("(%p)->(%d,%p,%p): stub\n", This, index, u, v);
- return E_NOTIMPL;
- return IDirect3DRMMeshBuilder_GetTextureCoordinates(&This->IDirect3DRMMeshBuilder2_iface,
- index, u, v);
}
I'm not going to say you can't do it like this, but it can often be pretty useful to know what version of an interface you were called from. Also, usually we implement older versions of interfaces on top of the new ones, instead of the other way around.