MCPcopy Create free account
hub / github.com/beefytech/Beef / Gfx_SetDrawVertex

Function Gfx_SetDrawVertex

BeefySysLib/BeefySysLib.cpp:667–672  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

665}
666
667BF_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
674BF_EXPORT void BF_CALLTYPE Gfx_CopyDrawVertex(int destIdx, int srcIdx)
675{

Callers

nothing calls this directly

Calls 1

SetMethod · 0.45

Tested by

no test coverage detected