Call overhead stats
Re: Call overhead stats
I would've used tri strips or tri fans though, saves two indices
Re: Call overhead stats
Good idea, I'll change it in next commit.
Library helping with network requests, tasks management, logger etc in desktop and mobile apps: https://github.com/GrupaPracuj/hermes
Re: Call overhead stats
Oh, since the indices are static, they should be static const, and not initialized in code.
I do that in my screenquad, the syntax is
I do that in my screenquad, the syntax is
Code: Select all
const u16 screenQuad::indices[4] = {0, 1, 2, 3}; // in a file
static const u16 indices[4]; // in the header