| 665 | } |
| 666 | |
| 667 | BF_EXPORT void BF_CALLTYPE Gfx_SetDrawVertex(int idx, float x, float y, float z, float u, float v, uint32 color) |
| 668 | { |
| 669 | gCurAllocVertices[idx].Set(x, y, z, |
| 670 | gCurTextureSegment->mU1 + u * (gCurTextureSegment->mU2 - gCurTextureSegment->mU1), |
| 671 | gCurTextureSegment->mV1 + v * (gCurTextureSegment->mV2 - gCurTextureSegment->mV1), color); |
| 672 | } |
| 673 | |
| 674 | BF_EXPORT void BF_CALLTYPE Gfx_CopyDrawVertex(int destIdx, int srcIdx) |
| 675 | { |