Hi,
Can someone confirm that nested C structures are NOT allowed in objective C.
And by nested structs, I mean the following;
struct Tex2D
{
GLfloat u;
GLfloat v;
};
// quad uv cords
struct TexQuad
{
Tex2D uv[4];
};
I seem to have all kinds of problems compiling this. It's difficult to find any documentation on this as this is perfectly valid c code.
Cheers Rich