I've made some changes for gles2 system(Describes here: http://www.ogre3d.org/addonforums/viewt ... 17&t=29658).
The gui work fine, I can see buttons and other elements.
But I have a problem with ImageBox. I have a black screen instead my png image. And the other part of my scene works fine.
I think png images load fine, because all buttons use png. And i don't know, why i can't see my image
This code works fine on my Linux pc. But it's black part of screen instead of image on Android.
Code: Select all
MyGUI::ImageBox* imageBox = mGUI->createWidget<MyGUI::ImageBox>("ImageBox",100,200,300,300, MyGUI::Align::Default,"Main");
imageBox->setImageTexture("test.png");