Jump to content

A Super Simple Sample App for Supersampling on iOS

+ 1
  adfm's Photo
Posted Jun 22 2010 10:59 AM

Looking for a shortcut to get full-screen anti-aliasing for your iPhone game? It might not be the optimal solution for your needs, but if you're rushing to get something out and need to cut some corners, then this excerpt on supersampling from Philip Rideout's iPhone 3D Programming is for you.


The easiest and crudest way to achieve full-scene anti-aliasing on the iPhone is to leverage bilinear texture filtering. Simply render to an offscreen FBO that has twice the dimensions of the screen, and then bind it to a texture and scale it down, as shown in Figure 6.4. This technique is known as supersampling.

Figure 6.4. Supersampling

Attached Image

To demonstrate how to achieve this effect, we’ll walk through the process of extending the stencil sample to use supersampling. As an added bonus, we’ll throw in an Apple-esque flipping animation, as shown in Figure 6.5. Since we’re creating a secondary FBO anyway, flipping effects like this come virtually for free.

Figure 6.5. Flipping transition with FBO

Attached Image

Example 6.8 shows the RenderingEngine class declaration and related type definitions. Class members that carry over from previous samples are replaced with an ellipses for brevity.

Example 6.8. RenderingEngine declaration for the anti-aliasing sample

struct Framebuffers {  1

	GLuint Small;

	GLuint Big;

};



struct Renderbuffers { 2

	GLuint SmallColor;

	GLuint BigColor;

	GLuint BigDepth;

	GLuint BigStencil;

};



struct Textures {

	GLuint Marble;

	GLuint RhinoBackground;

	GLuint TigerBackground;

	GLuint OffscreenSurface; 3

};



class RenderingEngine : public IRenderingEngine {

public:

	RenderingEngine(IResourceManager* resourceManager);

	void Initialize();

	void Render(float objectTheta, float fboTheta) const; 4

private:

	ivec2 GetFboSize() const; 5

	Textures m_textures;

	Renderbuffers m_renderbuffers;

	Framebuffers m_framebuffers;

	// ...

};


1

The “small” FBO is attached to the visible EAGL layer (320×480). The “big” FBO is the 640×960 surface that contains the 3D scene.

2

The small FBO does not need depth or stencil attachments because the only thing it contains is a full-screen quad; the big FBO is where most of the 3D rendering takes place, so it needs depth and stencil.

3

The 3D scene requires a marble texture for the podium and one background for each side of the animation (Figure 6.5). The fourth texture object, OffscreenSurface, is attached to the big FBO.

4

The application layer passes in objectTheta to control the rotation of the podium and passes in fboTheta to control the flipping transitions.

5

GetFboSize is a new private method for conveniently determining the size of the currently bound FBO. This method helps avoid the temptation to hardcode some magic numbers or to duplicate state that OpenGL already maintains.

First let’s take a look at the GetFboSize implementation (Example 6.9), which returns a width-height pair for the size. The return type is an instance of ivec2, one of the types defined in the C++ vector library in the appendix.

Example 6.9. GetFboSize() implementation

ivec2 RenderingEngine::GetFboSize() const

{

	ivec2 size;

	glGetRenderbufferParameterivOES(GL_RENDERBUFFER_OES,

 	GL_RENDERBUFFER_WIDTH_OES, &size.x);

	glGetRenderbufferParameterivOES(GL_RENDERBUFFER_OES,

 	GL_RENDERBUFFER_HEIGHT_OES, &size.y);

	return size;

}

Next let’s deal with the creation of the two FBOs. Recall the steps for creating the on-screen FBO used in almost every sample so far:

  1. In the RenderingEngine constructor, generate an identifier for the color renderbuffer, and then bind it to the pipeline.

  2. In the GLView class (Objective-C), allocate storage for the color renderbuffer like so:

    [m_context renderbufferStorage:GL_RENDERBUFFER fromDrawable:eaglLayer]
  3. In the RenderingEngine::Initialize method, create a framebuffer object, and attach the color renderbuffer to it.

  4. If desired, create and allocate renderbuffers for depth and stencil, and then attach them to the FBO.

For the supersampling sample that we’re writing, we still need to perform the first three steps in the previous sequence, but then we follow it with the creation of the offscreen FBO. Unlike the on-screen FBO, its color buffer is allocated in much the same manner as depth and stencil:

glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, width, height);

See Example 6.10 for the Initialize method used in the supersampling sample.

Example 6.10. Initialize() for supersampling

void RenderingEngine::Initialize()

{

	// Create the on-screen FBO.

	

	glGenFramebuffersOES(1, &m_framebuffers.Small);

	glBindFramebufferOES(GL_FRAMEBUFFER_OES, m_framebuffers.Small);

	glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES, 

 	GL_COLOR_ATTACHMENT0_OES,

 	GL_RENDERBUFFER_OES, 

 	m_renderbuffers.SmallColor);

	

	// Create the double-size off-screen FBO.

	

	ivec2 size = GetFboSize() * 2;



	glGenRenderbuffersOES(1, &m_renderbuffers.BigColor);

	glBindRenderbufferOES(GL_RENDERBUFFER_OES, m_renderbuffers.BigColor);

	glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES,

 	size.x, size.y);



	glGenRenderbuffersOES(1, &m_renderbuffers.BigDepth);

	glBindRenderbufferOES(GL_RENDERBUFFER_OES, m_renderbuffers.BigDepth);

	glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_DEPTH_COMPONENT24_OES,

 	size.x, size.y);



	glGenRenderbuffersOES(1, &m_renderbuffers.BigStencil);

	glBindRenderbufferOES(GL_RENDERBUFFER_OES, m_renderbuffers.BigStencil);

	glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_STENCIL_INDEX8_OES,

 	size.x, size.y);



	glGenFramebuffersOES(1, &m_framebuffers.Big);

	glBindFramebufferOES(GL_FRAMEBUFFER_OES, m_framebuffers.Big);

	glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES, 

 	GL_COLOR_ATTACHMENT0_OES,

 	GL_RENDERBUFFER_OES, 

 	m_renderbuffers.BigColor);

	glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES, 

 	GL_DEPTH_ATTACHMENT_OES,

 	GL_RENDERBUFFER_OES, 

 	m_renderbuffers.BigDepth);

	glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES, 

 	GL_STENCIL_ATTACHMENT_OES,

 	GL_RENDERBUFFER_OES,

 	m_renderbuffers.BigStencil);



	// Create a texture object and associate it with the big FBO.

	

	glGenTextures(1, &m_textures.OffscreenSurface);

	glBindTexture(GL_TEXTURE_2D, m_textures.OffscreenSurface);

	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);

	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);

	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);

	glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);

	glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, size.x, size.y, 0,

 	GL_RGBA, GL_UNSIGNED_BYTE, 0);

	glFramebufferTexture2DOES(GL_FRAMEBUFFER_OES, GL_COLOR_ATTACHMENT0_OES,

 	GL_TEXTURE_2D, m_textures.OffscreenSurface, 0);



	// Check FBO status.

	

	GLenum status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);

	if (status != GL_FRAMEBUFFER_COMPLETE_OES) {

 	cout << "Incomplete FBO" << endl;

 	exit(1);

	}

	

	// Load textures, create VBOs, set up various GL state.

	...

}


You may have noticed two new FBO-related function calls in Example 6.10: glFramebufferTexture2DOES and glCheckFramebufferStatusOES. The formal function declarations look like this:

void glFramebufferTexture2DOES(GLenum target, 

 	GLenum attachment, GLenum textarget,

 	GLuint texture, GLint level);



GLenum glCheckFramebufferStatusOES(GLenum target);

(As usual, the OES suffix can be removed for ES 2.0.)

The glFramebufferTexture2DOES function allows you to cast a color buffer into a texture object. FBO texture objects get set up just like any other texture object: they have an identifier created with glGenTextures, they have filter and wrap modes, and they have a format that should match the format of the FBO. The main difference with FBO textures is the fact that null gets passed to the last argument of glTexImage2D, since there’s no image data to upload.

Note that the texture in Example 6.10 has non-power-of-two dimensions, so it specifies clamp-to-edge wrapping to accommodate third-generation devices. For older iPhones, the sample won’t work; you’d have to change it to POT dimensions. Keep in mind that the values passed to glViewport need not match the size of the renderbuffer; this comes in handy when rendering to an NPOT subregion of a POT texture.

The other new function, glCheckFramebufferStatusOES, is a useful sanity check to make sure that an FBO has been set up properly. It’s easy to bungle the creation of FBOs if the sizes of the attachments don’t match up or if their formats are incompatible with each other. glCheckFramebufferStatusOES returns one of the following values, which are fairly self-explanatory:

  • GL_FRAMEBUFFER_COMPLETE

  • GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT

  • GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT

  • GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS

  • GL_FRAMEBUFFER_INCOMPLETE_FORMATS

  • GL_FRAMEBUFFER_UNSUPPORTED

Next let’s take a look at the render method of the supersampling sample. Recall from the class declaration that the application layer passes in objectTheta to control the rotation of the podium and passes in fboTheta to control the flipping transitions. So, the first thing the Render method does is look at fboTheta to determine which background image should be displayed and which shape should be shown on the podium. See Example 6.11.

Example 6.11. Render() for supersampling

void RenderingEngine::Render(float objectTheta, float fboTheta) const

{

	Drawable drawable;

	GLuint background;

	vec3 color;



	// Look at fboTheta to determine which "side" should be rendered:

	// 1) Orange Trefoil knot against a Tiger background

	// 2) Green Klein bottle against a Rhino background



	if (fboTheta > 270 || fboTheta < 90) {

 	background = m_textures.TigerBackground;

 	drawable = m_drawables.Knot;

 	color = vec3(1, 0.5, 0.1);

	} else {

 	background = m_textures.RhinoBackground;

 	drawable = m_drawables.Bottle;

 	color = vec3(0.5, 0.75, 0.1);

	}



	// Bind the double-size FBO.

	glBindFramebufferOES(GL_FRAMEBUFFER_OES, m_framebuffers.Big);

	glBindRenderbufferOES(GL_RENDERBUFFER_OES, m_renderbuffers.BigColor);

	ivec2 bigSize = GetFboSize();

	glViewport(0, 0, bigSize.x, bigSize.y);



	// Draw the 3D scene - download the example to see this code.

	...



	// Render the background.

	glColor4f(0.7, 0.7, 0.7, 1);

	glBindTexture(GL_TEXTURE_2D, background);

	glMatrixMode(GL_PROJECTION);

	glLoadIdentity();

	glFrustumf(-0.5, 0.5, -0.5, 0.5, NearPlane, FarPlane);

	glMatrixMode(GL_MODELVIEW);

	glLoadIdentity();

	glTranslatef(0, 0, -NearPlane * 2);

	RenderDrawable(m_drawables.Quad);

	glColor4f(1, 1, 1, 1);

	glDisable(GL_BLEND);



	// Switch to the on-screen render target.

	glBindFramebufferOES(GL_FRAMEBUFFER_OES, m_framebuffers.Small);

	glBindRenderbufferOES(GL_RENDERBUFFER_OES, m_renderbuffers.SmallColor);

	ivec2 smallSize = GetFboSize();

	glViewport(0, 0, smallSize.x, smallSize.y);



	// Clear the color buffer only if necessary.

	if ((int) fboTheta % 180 != 0) {

 	glClearColor(0, 0, 0, 1);

 	glClear(GL_COLOR_BUFFER_BIT);

	}



	// Render the offscreen surface by applying it to a quad.

	glDisable(GL_DEPTH_TEST);

	glRotatef(fboTheta, 0, 1, 0);

	glBindTexture(GL_TEXTURE_2D, m_textures.OffscreenSurface);

	RenderDrawable(m_drawables.Quad);

	glDisable(GL_TEXTURE_2D);

}


Most of Example 6.11 is fairly straightforward. One piece that may have caught your eye is the small optimization made right before blitting the offscreen FBO to the screen:

// Clear the color buffer only if necessary.

if ((int) fboTheta % 180 != 0) {

	glClearColor(0, 0, 0, 1);

	glClear(GL_COLOR_BUFFER_BIT);

}

This is a sneaky little trick. Since the quad is the exact same size as the screen, there’s no need to clear the color buffer; unnecessarily issuing a glClear can hurt performance. However, if a flipping animation is currently underway, the color buffer needs to be cleared to prevent artifacts from appearing in the background; flip back to Figure 6.5 and observe the black areas. If fboTheta is a multiple of 180, then the quad completely fills the screen, so there’s no need to issue a clear.

Figure 6.6. Left: normal rendering; right: 2× supersampling

Attached Image

That’s it for the supersampling sample. The quality of the anti-aliasing is actually not that great; you can still see some “stair-stepping” along the bottom outline of the shape in Figure 6.6. You might think that creating an even bigger offscreen buffer, say quadruple-size, would provide higher-quality results. Unfortunately, using a quadruple-size buffer would require two passes; directly applying a 1280×1920 texture to a 320×480 quad isn’t sufficient because GL_LINEAR filtering only samples from a 2×2 neighborhood of pixels. To achieve the desired result, you’d actually need three FBOs as follows:

  • 1280×1920 offscreen FBO for the 3D scene

  • 640×960 offscreen FBO that contains a quad with the 1280×1920 texture applied to it

  • 320×480 on-screen FBO that contains a quad with the 640×960 texture applied to it

Not only is this laborious, but it’s a memory hog. Older iPhones don’t even support textures this large!

Cover of iPhone 3D Programming
Learn more about this topic from iPhone 3D Programming. 

Do you have a great idea for a graphics-intensive iPhone or iPad application, but don't know how to bring it to life? This book offers the perfect solution: a crash course on the OpenGL graphics library with an overview of iPhone 3D development. Whether you're an experienced OpenGL developer looking to build iPhone apps for the first time, or an iPhone developer wanting to learn sophisticated graphics, iPhone 3D Programming addresses both in one concise, easy-to-use guide.

Learn More Read Now on Safari


Tags:
1 Subscribe


1 Reply

 : Jun 22 2010 02:08 PM
Excellent example, I don't think there is significant literature out there that talks about this, asf ar as what I have come across. Cheers
------------------------------------------
Posted Image

Doron Katz
EMAIL: doron.e.katz@gmail.com
CELL: +61 (0) 410 740 678
FAX: +61 (0) 29904 3572

SKYPE: http://twitter.com/doronkatz
SKYPE: doronkatz1981
WWW: http://www.doronkatz.com