what changes from 3.0.1 to 3.2 to renderbox

yaxinhoo

19-01-2011 11:22:06

what changes from 3.0.1 to 3.2 to renderbox , i had build the mygui3.0.1 static for iphone. the renderbox was worked ,but the staticimage was'nt .
when i change to 3.2 the staticimage had delete. the imagebox worked , but the renderbox wasn't work.

all of the upper in windows is worked very nice.

i want to know why staticimage delete and what renderbox changes in 3.2, can anyone tell me sth , or give me same hint to let me show the render box.

my isdk is 4.2
ipod touch 4
IOS 4.2
/IPad 3
IOS 3.2.1

my code is :

const MyGUI::IntSize& size = MyGUI::RenderManager::getInstance().getViewSize();

MyGUI::Window* window = MyGUI::Gui::getInstance().createWidget<MyGUI::Window>("WindowCS", MyGUI::IntCoord(10, size.height - 10 - 430, 300, 430), MyGUI::Align::Default, "Popup");
window->setCaption("Camera view");
window->setMinSize(MyGUI::IntSize(100, 100));
MyGUI::Canvas* canvas = window->createWidget<MyGUI::Canvas>("Canvas", MyGUI::IntCoord(0, 0, window->getClientCoord().width, window->getClientCoord().height), MyGUI::Align::Stretch);

MyGUI::Window* window2 = MyGUI::Gui::getInstance().createWidget<MyGUI::Window>("WindowCS", MyGUI::IntCoord(size.width - 10 - 300, 10, 300, 430), MyGUI::Align::Default, "Popup");
window2->setCaption("Model view");
window2->setMinSize(MyGUI::IntSize(100, 100));
MyGUI::Canvas* canvas2 = window2->createWidget<MyGUI::Canvas>("Canvas", MyGUI::IntCoord(0, 0, window2->getClientCoord().width, window2->getClientCoord().height), MyGUI::Align::Stretch);
canvas2->setPointer("hand");

gRenderBox->setCanvas(canvas);
Ogre::Camera* cam = m_pSceneMgr->getCamera("Camera");
gRenderBox->setViewport(cam);
//gRenderBox->setBackgroundColour(MyGUI::Colour::Black);

gRenderBoxScene->setCanvas(canvas2);
gRenderBoxScene->injectObject("aaa.mesh");
gRenderBoxScene->setAutoRotation(true);
gRenderBoxScene->setMouseRotation(true);

Altren

19-01-2011 13:48:35

StaticImage was renamed into ImageBox.
There was no changes in renderbox for a while, and your code is almost same as in Demo_RenderBox that works fine. What is your problem?

yaxinhoo

25-01-2011 07:03:59

thanks for you reply .my problem is the renderbox can't render the scene in canvas .
my enviroment is : ogre1.8 from trunk . ipod touch 4 , ios 4.1, iphone sdk 4.2.

Altren

25-01-2011 09:16:00

Try to apply this change:
Open MyGUI_OgreRenderManager.cpp in MyGUI.OgrePlatform and in OgreRenderManager::doRender replace this two lines
mRenderSystem->_setTexture(0, true, texture_ptr);
mRenderSystem->_setTextureUnitFiltering(0, Ogre::FO_LINEAR, Ogre::FO_LINEAR, Ogre::FO_POINT);
with
mRenderSystem->_setTexture(0, true, texture_ptr);
mRenderSystem->_setTextureUnitFiltering(0, Ogre::FO_LINEAR, Ogre::FO_LINEAR, Ogre::FO_NONE);

yaxinhoo

25-01-2011 16:44:41

thanks for you reply .
i did it , but i got the problem too.

Altren

26-01-2011 00:22:37

I'm not sure, by try to switch this two lines: mRenderSystem->_setTextureUnitFiltering(0, Ogre::FO_LINEAR, Ogre::FO_LINEAR, Ogre::FO_NONE);
mRenderSystem->_setTexture(0, true, texture_ptr);

yaxinhoo

27-01-2011 17:43:56

i did it. but got the problem too.

Altren

27-01-2011 18:09:56

Show MyGUI.log

yaxinhoo

08-02-2011 03:42:24

thanks for you help. this time i try the rc version . got the same result.
mygui.log
11:28:18 | Core | Info | * Initialise: RenderManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/Platforms/Ogre/OgrePlatform/src/MyGUI_OgreRenderManager.cpp | 35
11:28:18 | Core | Info | RenderManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/Platforms/Ogre/OgrePlatform/src/MyGUI_OgreRenderManager.cpp | 63
11:28:18 | Core | Info | * Initialise: DataManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/Platforms/Ogre/OgrePlatform/src/MyGUI_OgreDataManager.cpp | 26
11:28:18 | Core | Info | DataManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/Platforms/Ogre/OgrePlatform/src/MyGUI_OgreDataManager.cpp | 30
11:28:18 | Core | Info | * Initialise: Gui | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_Gui.cpp | 75
11:28:18 | Core | Info | * MyGUI version 3.2.0 | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_Gui.cpp | 87
11:28:18 | Core | Info | * Initialise: ResourceManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 48
11:28:18 | Core | Info | ResourceManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 56
11:28:18 | Core | Info | * Initialise: LayerManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_LayerManager.cpp | 49
11:28:18 | Core | Info | LayerManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_LayerManager.cpp | 57
11:28:18 | Core | Info | * Initialise: WidgetManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_WidgetManager.cpp | 67
11:28:18 | Core | Info | WidgetManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_WidgetManager.cpp | 98
11:28:18 | Core | Info | * Initialise: InputManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_InputManager.cpp | 58
11:28:18 | Core | Info | InputManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_InputManager.cpp | 76
11:28:18 | Core | Info | * Initialise: SubWidgetManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_SubWidgetManager.cpp | 49
11:28:18 | Core | Info | SubWidgetManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_SubWidgetManager.cpp | 69
11:28:18 | Core | Info | * Initialise: SkinManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_SkinManager.cpp | 53
11:28:18 | Core | Info | SkinManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_SkinManager.cpp | 61
11:28:18 | Core | Info | * Initialise: FontManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_FontManager.cpp | 48
11:28:18 | Core | Info | FontManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_FontManager.cpp | 57
11:28:18 | Core | Info | * Initialise: ControllerManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ControllerManager.cpp | 46
11:28:18 | Core | Info | ControllerManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ControllerManager.cpp | 56
11:28:18 | Core | Info | * Initialise: PointerManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_PointerManager.cpp | 60
11:28:18 | Core | Info | PointerManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_PointerManager.cpp | 78
11:28:18 | Core | Info | * Initialise: ClipboardManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ClipboardManager.cpp | 87
11:28:18 | Core | Info | ClipboardManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ClipboardManager.cpp | 101
11:28:18 | Core | Info | * Initialise: LayoutManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_LayoutManager.cpp | 45
11:28:18 | Core | Info | LayoutManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_LayoutManager.cpp | 50
11:28:18 | Core | Info | * Initialise: DynLibManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_DynLibManager.cpp | 41
11:28:18 | Core | Info | DynLibManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_DynLibManager.cpp | 45
11:28:18 | Core | Info | * Initialise: PluginManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_PluginManager.cpp | 45
11:28:18 | Core | Info | PluginManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_PluginManager.cpp | 49
11:28:18 | Core | Info | * Initialise: LanguageManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_LanguageManager.cpp | 45
11:28:18 | Core | Info | LanguageManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_LanguageManager.cpp | 49
11:28:18 | Core | Info | * Initialise: FactoryManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_FactoryManager.cpp | 40
11:28:18 | Core | Info | FactoryManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_FactoryManager.cpp | 42
11:28:18 | Core | Info | * Initialise: ToolTipManager | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ToolTipManager.cpp | 48
11:28:18 | Core | Info | ToolTipManager successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ToolTipManager.cpp | 60
11:28:18 | Core | Info | Load ini file 'MyGUI_Fonts.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | ResourceTrueTypeFont 'DejaVuSansFont.17' using texture size 512 x 256 | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceTrueTypeFont.cpp | 206
11:28:19 | Core | Info | ResourceTrueTypeFont 'DejaVuSansFont.17' using real height 17 pixels | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceTrueTypeFont.cpp | 207
11:28:19 | Core | Info | Load ini file 'MyGUI_Images.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_CommonSkins.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_BlueWhiteTheme.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_BlueWhiteImages.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_BlueWhiteSkins.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_BlueWhiteTemplates.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_Pointers.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_Layers.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:19 | Core | Info | Load ini file 'MyGUI_Settings.xml' | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_ResourceManager.cpp | 130
11:28:20 | Core | Info | Gui successfully initialized | /Volumes/MacWork2/Dependencies/my-gui/MyGUI_3.2.0_RC1/MyGUIEngine/src/MyGUI_Gui.cpp | 136


Ogre.log
11:28:16: Creating resource group General
11:28:16: Creating resource group Internal
11:28:16: Creating resource group Autodetect
11:28:17: SceneManagerFactory for type 'DefaultSceneManager' registered.
11:28:17: Registering ResourceManager for type Material
11:28:17: Registering ResourceManager for type Mesh
11:28:17: Registering ResourceManager for type Skeleton
11:28:17: MovableObjectFactory for type 'ParticleSystem' registered.
11:28:17: OverlayElementFactory for type Panel registered.
11:28:17: OverlayElementFactory for type BorderPanel registered.
11:28:17: OverlayElementFactory for type TextArea registered.
11:28:17: Registering ResourceManager for type Font
11:28:17: ArchiveFactory for archive type FileSystem registered.
11:28:17: ArchiveFactory for archive type Zip registered.
11:28:17: DDS codec registering
11:28:17: FreeImage version: 3.13.1
11:28:17: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
11:28:17: Supported formats: jpg,jif,jpeg,jpe,png,tga,targa,tif,tiff
11:28:17: PVRTC codec registering
11:28:17: Registering ResourceManager for type HighLevelGpuProgram
11:28:17: Registering ResourceManager for type Compositor
11:28:17: MovableObjectFactory for type 'Entity' registered.
11:28:17: MovableObjectFactory for type 'Light' registered.
11:28:17: MovableObjectFactory for type 'BillboardSet' registered.
11:28:17: MovableObjectFactory for type 'ManualObject' registered.
11:28:17: MovableObjectFactory for type 'BillboardChain' registered.
11:28:17: MovableObjectFactory for type 'RibbonTrail' registered.
11:28:17: *-*-* OGRE Initialising
11:28:17: *-*-* Version 1.8.0unstable (Byatis)
11:28:17: Installing plugin: OpenGL ES 1.x RenderSystem
11:28:17: OpenGL ES 1.x Rendering Subsystem created.
11:28:17: Plugin successfully installed
11:28:17: Installing plugin: Octree Scene Manager
11:28:17: Plugin successfully installed
11:28:17: Installing plugin: ParticleFX
11:28:17: Particle Emitter Type 'Point' registered
11:28:17: Particle Emitter Type 'Box' registered
11:28:17: Particle Emitter Type 'Ellipsoid' registered
11:28:17: Particle Emitter Type 'Cylinder' registered
11:28:17: Particle Emitter Type 'Ring' registered
11:28:17: Particle Emitter Type 'HollowEllipsoid' registered
11:28:17: Particle Affector Type 'LinearForce' registered
11:28:17: Particle Affector Type 'ColourFader' registered
11:28:17: Particle Affector Type 'ColourFader2' registered
11:28:17: Particle Affector Type 'ColourImage' registered
11:28:17: Particle Affector Type 'ColourInterpolator' registered
11:28:17: Particle Affector Type 'Scaler' registered
11:28:17: Particle Affector Type 'Rotator' registered
11:28:17: Particle Affector Type 'DirectionRandomiser' registered
11:28:17: Particle Affector Type 'DeflectorPlane' registered
11:28:17: Plugin successfully installed
11:28:17: Installing plugin: BSP Scene Manager
11:28:17: Plugin successfully installed
11:28:17: CPU Identifier & Features
11:28:17: -------------------------
11:28:17: * CPU ID:
11:28:17: * VFP: no
11:28:17: * NEON: yes
11:28:17: -------------------------
11:28:17: GLESRenderSystem::_createRenderWindow "IPubby v1.0", 320x480 fullscreen miscParams: FSAA=0 contentScalingFactor=2 displayFrequency=0 Hz orientation=Landscape Left
11:28:17: iOS: Window created 320 x 480 with backing store size 640 x 960 using content scaling factor 2.0
11:28:17: GL_VERSION = OpenGL ES-CM 1.1 IMGSGX535-48.14.1
11:28:17: GL_VENDOR = Imagination Technologies
11:28:17: GL_RENDERER = PowerVR SGX 535
11:28:17: GL_EXTENSIONS = GL_APPLE_framebuffer_multisample GL_APPLE_texture_2D_limited_npot GL_APPLE_texture_format_BGRA8888 GL_APPLE_texture_max_level GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_EXT_read_format_bgra GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_IMG_read_format GL_IMG_texture_compression_pvrtc GL_OES_blend_equation_separate GL_OES_blend_func_separate GL_OES_blend_subtract GL_OES_compressed_paletted_texture GL_OES_depth24 GL_OES_draw_texture GL_OES_fbo_render_mipmap GL_OES_framebuffer_object GL_OES_mapbuffer GL_OES_matrix_palette GL_OES_packed_depth_stencil GL_OES_point_size_array GL_OES_point_sprite GL_OES_read_format GL_OES_rgb8_rgba8 GL_OES_stencil8 GL_OES_stencil_wrap GL_OES_texture_mirrored_repeat GL_OES_vertex_array_object
11:28:17: EXT:GL_APPLE_framebuffer_multisample
11:28:17: EXT:GL_APPLE_texture_2D_limited_npot
11:28:17: EXT:GL_APPLE_texture_format_BGRA8888
11:28:17: EXT:GL_APPLE_texture_max_level
11:28:17: EXT:GL_EXT_blend_minmax
11:28:17: EXT:GL_EXT_discard_framebuffer
11:28:17: EXT:GL_EXT_read_format_bgra
11:28:17: EXT:GL_EXT_texture_filter_anisotropic
11:28:17: EXT:GL_EXT_texture_lod_bias
11:28:17: EXT:GL_IMG_read_format
11:28:17: EXT:GL_IMG_texture_compression_pvrtc
11:28:17: EXT:GL_OES_blend_equation_separate
11:28:17: EXT:GL_OES_blend_func_separate
11:28:17: EXT:GL_OES_blend_subtract
11:28:17: EXT:GL_OES_compressed_paletted_texture
11:28:17: EXT:GL_OES_depth24
11:28:17: EXT:GL_OES_draw_texture
11:28:17: EXT:GL_OES_fbo_render_mipmap
11:28:17: EXT:GL_OES_framebuffer_object
11:28:17: EXT:GL_OES_mapbuffer
11:28:17: EXT:GL_OES_matrix_palette
11:28:17: EXT:GL_OES_packed_depth_stencil
11:28:17: EXT:GL_OES_point_size_array
11:28:17: EXT:GL_OES_point_sprite
11:28:17: EXT:GL_OES_read_format
11:28:17: EXT:GL_OES_rgb8_rgba8
11:28:17: EXT:GL_OES_stencil8
11:28:17: EXT:GL_OES_stencil_wrap
11:28:17: EXT:GL_OES_texture_mirrored_repeat
11:28:17: EXT:GL_OES_vertex_array_object
11:28:17: **************************************
11:28:17: *** OpenGL ES 1.x Renderer Started ***
11:28:17: **************************************
11:28:17: Registering ResourceManager for type GpuProgram
11:28:17: GL ES: Using GL_OES_framebuffer_object for rendering to textures (best)
11:28:17: FBO PF_UNKNOWN depth/stencil support: D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_R5G6B5 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_B5G6R5 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_A4R4G4B4 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_A1R5G5B5 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_R8G8B8 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_B8G8R8 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_A8R8G8B8 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_B8G8R8A8 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_X8R8G8B8 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: FBO PF_X8B8G8R8 depth/stencil support: D0S0 D0S8 D16S0 D24S0 Packed-D24S8
11:28:17: [GLES] : Valid FBO targets PF_UNKNOWN PF_R5G6B5 PF_B5G6R5 PF_A4R4G4B4 PF_A1R5G5B5 PF_R8G8B8 PF_B8G8R8 PF_A8R8G8B8 PF_B8G8R8A8 PF_X8R8G8B8 PF_X8B8G8R8
11:28:17: RenderSystem capabilities
11:28:17: -------------------------
11:28:17: RenderSystem Name: OpenGL ES 1.x Rendering Subsystem
11:28:17: GPU Vendor: imagination technologies
11:28:17: Device Name: PowerVR SGX 535
11:28:17: Driver Version: 0.0.0.0
11:28:17: * Fixed function pipeline: yes
11:28:17: * Hardware generation of mipmaps: yes
11:28:17: * Texture blending: yes
11:28:17: * Anisotropic texture filtering: yes
11:28:17: * Dot product texture operation: yes
11:28:17: * Cube mapping: no
11:28:17: * Hardware stencil buffer: no
11:28:17: * Hardware vertex / index buffers: yes
11:28:17: * Vertex programs: no
11:28:17: * Number of floating-point constants for vertex programs: 0
11:28:17: * Number of integer constants for vertex programs: 0
11:28:17: * Number of boolean constants for vertex programs: 0
11:28:17: * Fragment programs: no
11:28:17: * Number of floating-point constants for fragment programs: 0
11:28:17: * Number of integer constants for fragment programs: 0
11:28:17: * Number of boolean constants for fragment programs: 0
11:28:17: * Geometry programs: no
11:28:17: * Number of floating-point constants for geometry programs: 0
11:28:17: * Number of integer constants for geometry programs: 0
11:28:17: * Number of boolean constants for geometry programs: 0
11:28:17: * Supported Shader Profiles:
11:28:17: * Texture Compression: yes
11:28:17: - DXT: no
11:28:17: - VTC: no
11:28:17: - PVRTC: yes
11:28:17: * Scissor Rectangle: yes
11:28:17: * Hardware Occlusion Query: no
11:28:17: * User clip planes: yes
11:28:17: * VET_UBYTE4 vertex element type: yes
11:28:17: * Infinite far plane projection: yes
11:28:17: * Hardware render-to-texture: yes
11:28:17: * Floating point textures: no
11:28:17: * Non-power-of-two textures: no
11:28:17: * Volume textures: no
11:28:17: * Multiple Render Targets: 1
11:28:17: - With different bit depths: no
11:28:17: * Point Sprites: yes
11:28:17: * Extended point parameters: yes
11:28:17: * Max Point Size: 511
11:28:17: * Vertex texture fetch: no
11:28:17: * Number of world matrices: 0
11:28:17: * Number of texture units: 8
11:28:17: * Stencil buffer depth: 0
11:28:17: * Number of vertex blend matrices: 0
11:28:17: * Render to Vertex Buffer : no
11:28:17: * GL 1.5 without VBO workaround: no
11:28:17: * Frame Buffer objects: yes
11:28:17: * Frame Buffer objects (ARB extension): no
11:28:17: * Frame Buffer objects (ATI extension): no
11:28:17: * PBuffer support: no
11:28:17: * GL 1.5 without HW-occlusion workaround: no
11:28:17: Registering ResourceManager for type Texture
11:28:17: DefaultWorkQueue('Root') initialising on thread main.
11:28:17: Particle Renderer Type 'billboard' registered
11:28:17: SceneManagerFactory for type 'OctreeSceneManager' registered.
11:28:17: SceneManagerFactory for type 'BspSceneManager' registered.
11:28:17: Registering ResourceManager for type BspLevel
11:28:17: Creating resource group Bootstrap
11:28:17: Added resource location '/var/mobile/Applications/855D05C9-BD4B-4C35-A833-993C0347F9C1/GUITest.app/./media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'
11:28:17: Added resource location '/var/mobile/Applications/855D05C9-BD4B-4C35-A833-993C0347F9C1/GUITest.app/./media/MyGUI' of type 'FileSystem' to resource group 'General'
11:28:17: Added resource location '/var/mobile/Applications/855D05C9-BD4B-4C35-A833-993C0347F9C1/GUITest.app/./media/XXXX' of type 'FileSystem' to resource group 'General'
11:28:17: Added resource location '/var/mobile/Applications/855D05C9-BD4B-4C35-A833-993C0347F9C1/GUITest.app/./media/XXXX/XXXX' of type 'FileSystem' to resource group 'General'
11:28:17: IPubby initialized!
11:28:17: Parsing scripts for resource group Autodetect
11:28:17: Finished parsing scripts for resource group Autodetect
11:28:17: Creating resources for group Autodetect
11:28:17: All done
11:28:17: Parsing scripts for resource group Bootstrap
11:28:17: Parsing script OgreCore.material
11:28:17: ScriptCompiler::compile called
11:28:17: Parsing script OgreProfiler.material
11:28:17: ScriptCompiler::compile called
11:28:18: Parsing script Ogre.fontdef
11:28:18: Parsing script OgreDebugPanel.overlay
11:28:18: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.
11:28:18: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
11:28:18: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
11:28:18: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.
11:28:18: Parsing script OgreLoadingPanel.overlay
11:28:18: Finished parsing scripts for resource group Bootstrap
11:28:18: Creating resources for group Bootstrap
11:28:18: All done
11:28:18: Parsing scripts for resource group General
11:28:18: Parsing script Housemaid.material
11:28:18: ScriptCompiler::compile called
11:28:18: Parsing script Penguin.material
11:28:18: ScriptCompiler::compile called
11:28:18: Parsing script ogre.material
11:28:18: ScriptCompiler::compile called
11:28:18: Finished parsing scripts for resource group General
11:28:18: Creating resources for group General
11:28:18: All done
11:28:18: Parsing scripts for resource group Internal
11:28:18: Finished parsing scripts for resource group Internal
11:28:18: Creating resources for group Internal
11:28:18: All done
11:28:18: Mesh: Loading penguin.mesh.
11:28:18: Skeleton: Loading penguin.skeleton
11:28:18: Texture: penguin.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_R8G8B8,512x512x1.
11:28:19: Texture: MyGUI_BlueWhiteSkins.png: Loading 1 faces(PF_A8B8G8R8,512x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x256x1.
11:28:20: Texture: MyGUI_Pointers.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.

Altren

08-02-2011 09:11:24

Could you try to run Demo_RenderBox and post logs here? Does it actually work?