mirror of https://github.com/bkaradzic/bgfx
Merge pull request #99 from fluffyfreak/nanovg_vs2013_fix
Defining round function isn't required for vs2013 or newer.
This commit is contained in:
commit
e0eb85462d
|
@ -833,10 +833,12 @@ void freeDemoData(struct NVGcontext* vg, struct DemoData* data)
|
|||
nvgDeleteImage(vg, data->images[i]);
|
||||
}
|
||||
|
||||
#if _MSC_VER < 1800
|
||||
inline float round(float _f)
|
||||
{
|
||||
return float(int(_f) );
|
||||
}
|
||||
#endif
|
||||
|
||||
void drawParagraph(struct NVGcontext* vg, float x, float y, float width, float height, float mx, float my)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue