vote up 1 vote down star

Hi,

I want to render a splash screen on the iPhone whilst using an Open GL view. The iPhone screen as we know is 320x480, which is not a power of 2.

Before I enter into the world of chopping the texture up and rendering sub parts, or embedding the screen on another texture page I was wondering if there was another way?

Is it possible to overlay another view that I could render to using CoreGraphics functions? Or is it possible to render to a Open GL surface using Core Graphics functions.

What would you recommend?

Cheers Rich

flag

57% accept rate

2 Answers

vote up 1 vote down check

Its entirely possible to write some code, which creates a 512x512 texture, load an image into it and then render only a portion of that texture (by mapping onto a polygon and altering the texture mapping UV co-ordinates).

This method is best for static images only, you couldn't really perform pixel-by-pixel real-time updates for this; updating the texture via open GL ES is currently too slow.

link|flag
vote up 0 vote down

I would recommend that you read Apple's Human Interface Guidelines for iPhone, especially the several parts where they warn you over and over not to make splash screens.

link|flag
How will I render the graphics for my frontend then? I have a graphic that covers the screen, which I want to draw on top of. Every game I download has a splash screen ... – Rich Jun 2 at 18:24
How about skipping the annoying commercial and going straight into the game? – Paul Tomblin Jun 2 at 18:25
I think you misunderstand, I want render a title screen, a front end, from which options can be changed or the game can be launched. – Rich Jun 2 at 18:32
What you describe isn't a "splash screen" if it's part of the user interface. – Paul Tomblin Jun 2 at 19:11
Sorry in the games industry we refer to it as a splash screen. Regardless the question stands on the course of action to take when rendering it. – Rich Jun 2 at 19:46
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.