3 Jun
2013
3 Jun
'13
4:16 p.m.
On Tue, 2013-06-04 at 02:02 +1000, Nathan Hurst wrote:
for (int p = 0; p < 4; p++) { _vertices[i].rgba[p] = pixels[p]; }
I'm surprised there's not a better way to do a list assignment, but I guess C++ means it's not slow to loop and still recognizable to other devs.
Martin,