I searched along the documentation and found nothing, then after searching on google i found this glReadPixels and i guess i may be able to take screenshots.
I need to create a facebookdialog with an image so im using this lines:
static s3eFBRequest* req = s3eFBRequest_WithGraphPath(MultiLoginScene::getSession(), "me/photos", "POST");
s3eFBRequest_AddParamString(req, "picture", XXX);
XXX is a const char* that would be this screenshot I need to take and then i will just send the request.
How can I do that?