14.2 Simple Texture Effects

This section describes some "sprite" type effects that are commonly useful for texture rectangles. Many other effects can be created using various hardwares as well.

UP


14.2.1 Flip

Flip means to rotate an image 180 degrees around the X or Y axis or both as shown in Figure 14-7.

Figure 14-7 Flipping Texture Rectangles
[Figure 14-7]


If the texture map to be flipped has a size that is a power of two in the direction of the flip, then you can use the mirror_enable bit (see Section 13.4.6 "Mirror Enable S,T") bit in the tile descriptor to perform the flip.

For example, suppose we have loaded a 32x32 16-bit RGBA texture into TMEM. To flip the texture in X we can use the code in Example 14-11.

Example 14-11 Flip a Texture in X
gsDPSetTile(G_IM_FMT_RGBA,G_IM_SIZ_16b,8,0,
        G_TX_RENDERTILE,0,
        G_TX_MIRROR,5,G_TX_NOLOD,       /* s */
        G_TX_NOMIRROR,5,G_TX_NOLOD),    /* t */
gsSPTextureRectangle(50<<2,50<<2,150<<2,150<<2,
        G_TX_RENDERTILE,
        32<<5,0,                  /* start s on mirror boundary */
        1<<10,1<<10),
      

Note that the S start point is 32. Since the texture will be mirrored with the S coordinate between 32 and 63 if the mirror_enable bit is set to 1, to get the effect of a flipped texture. If the mirror_enable bit is 0 disabled, the texture will remain unflipped.

For textures that are not power of two sizes, we must use another approach for flipping the textures. Suppose we have loaded a 48x42 16-bit RGBA texture in TMEM and would like to flip the texture in T. The code in Example 14-12 would accomplish this.

Example 14-12 Flip a Texture in Y (non power-of-two size)
gsSPTextureRectangle(50<<2,50<<2,98<<2,92<<2,
        G_TX_RENDERTILE,
        0,41<<5,                  /* start t at bottom of texture */
        1<<10,((-1)<<10)&0xffff), /* step from bottom to top of texture */
      

Note that we change the texture T coordinate to start at the bottom of the texture and change the increment in T so that we step from the bottom of the texture to the top, thus flipping the texture in Y.

There is also a variation of the texture rectangle called g*SPTextureRectangleFlip() that swaps the S and T coordinates in hardware. If we had a display list as in Figure 14-8, an image like the following will be created.

Example 14-13 TextureRectangleFlip command
gsSPTextureRectangleFlip(50<<2,50<<2,98<<2,92<<2,
        G_TX_RENDERTILE,
        0,0,
        1<<10,1<<10)
      
Figure 14-8 TextureRectangleFlip Command
[Figure 14-8]

UP


14.2.2 Mirror

Mirroring is also useful for data compression in cases where the texture has axial symmetry. For example, a tree could be created with half of a tree texture that was mirrored in X as shown in Figure 14-9

Figure 14-9 Mirrored Tree
[Figure 14-9]

As mentioned before, to use hardware mirroring, the texture must be a power of two size in the direction to be mirrored. Suppose the tree texture above is a 16x40 16-bit RGBA texture. Example 14-14 will render the mirrored tree as shown in Figure 14-9.

Example14-14 Mirrored Tree
gsDPLoadTextureTile(tree,G_IM_FMT_RGBA,G_IM_SIZ_16b,
        16,40,
        0,0,15,39,
        0,
        G_TX_MIRROR,G_TX_CLAMP,
        4,G_TX_NOMASK,
        G_TX_NOLOD,G_TX_NOLOD),
gsSPTextureRectangle(50<<2,50<<2,82<<2,90<<2,
        G_TX_RENDERTILE,
        0,0,
        1<<10,1<<10),
      

UP


14.2.3 Wrap

Wrap allows a small texture to fill a larger rectangle by repeating the texture over and over. In the Nintendo 64, wrapping will be automatically enabled if the mask bit in the tile descriptor is non-zero, and the clamp bit in the tile descriptor is set to 0. The mask bit determines whether to execute a wrap or not when it is a multiple of 2. Figure 14-10 shows the results for 3 kinds of wrap boundaries using a single texture.

Figure 14-10 Mirrored Tree
[Figure 14-10]

Wrapping can also be used in conjunction with mirroring. Suppose we wanted to wrap the mirrored tree shown in Figure 14-9 above. This could be done using the code in Example 14-15.

Example 14-15 Wrapped and Mirrored Tree
gsDPLoadTextureTile(tree,G_IM_FMT_RGBA,G_IM_SIZ_16b,
        16,40,
        0,0,15,39,
        0,
        G_TX_MIRROR|G_TX_WRAP,G_TX_CLAMP,
        4,G_TX_NOMASK,
        G_TX_NOLOD,G_TX_NOLOD),
gsSPTextureRectangle(50<<2,50<<2,114<<2,90<<2,
        G_TX_RENDERTILE,
        0,0,
        1<<10,1<<10),
      

Note that the G_TX_WRAP above is really unnecessary because wrapping is implicit as we have a non-zero mask value and are not clamping. It is included just for documentation purposes to provide a better understanding. The resulting image would look like Figure 14-11.

Figure 14-11 Wrapped and Mirrored Tree
[Figure 14-11]

UP


14.2.4 Sliding Textures

It is easy to slide a texture relative to the rectangle primitive by changing the tile descriptor values of SL and TL. Using the tile descriptor allows the texture coordinates to be statically defined. The effect of changing SL, TL is shown in Figure 14-12.

Figure 14-12 Effect of Changing SL, TL
[Figure 14-12]

Suppose we have a 32x32 4-bit texture loaded in TMEM. In Example above, two rectangles are rendered with the texture placed in different positions using SL and TL.

Example 14-16 Sliding Texture Using SL, TL
gsDPSetTileSize(G_TX_RENDERTILE,50,50,82,82),
gsSPTextureRectangle(50<<2,50<<2,82<<2,82<<2,
        G_TX_RENDERTILE,
        0,0,
        1<<10,1<<10),
gsDPSetTileSize(G_TX_RENDERTILE,80,100,112,132),
gsSPTextureRectangle(100<<2,100<<2,132<<2,132<<2,
        G_TX_RENDERTILE,
        0,0,
        1<<10,1<<10),
      

Note that SH and TH are only used when performing clamp. Because SL and TL are unsigned, the texture rectangle coordinates must be offset to allow sliding above the top edge or to the left of the left edge of the rectangle. This is shown in Figure 14-13 and Example 14-17.

Figure 14-13 Biasing Texture Coordinates for Positive SL, TL
[Figure 14-13]
[Figure 14-13-00]
Example 14-17 Biased Coordinates for Positive SL
gsDPSetTileSize(G_TX_RENDERTILE,25,50,57,82),
gsSPTextureRectangle(50<<2,50<<2,82<<2,82<<2,
        G_TX_RENDERTILE,
        50<<5,0,
        1<<10,1<<10),
      

UP


14.2.5 Smooth Scrolling

Scrolling involves positioning texture rectangles on the screen and also positioning the texture within the rectangle. The rectangle geometry can be positioned with 2 bits of fractional precision in X and Y. The texture coordinates can be specified with 5 bits off fractional precision in S and T. To get the smoothest scrolling, you can use the S and T start point as the fractional part and the rectangle's X and Y position for the integer part. So effectively, you are sliding the texture toto achieve fractional displacements. The following example shows how such positioning could be achieved. Keep in mind that a border area around the texture must be present so that the texture doesn't clamp when it slides off the rectangle.

Example 14-18 Accurate Positioning Using S and T
float   xpos=10.375,ypos=19.432;
int     xi,xf,yi,yf;

xi=(int)xpos;
yi=(int)ypos;
xf=32-32X(xpos-xi);
yf=32-32X(ypos-yi);
gSPTextureRectangle(glistp++,
        xi<<2,yi<<2,(xi+32)<<2,(yi+32)<<2,
        G_TX_RENDERTILE,
        xf,yf,
        1<<10,1<<10);
      

UP


14.2.6 Billboards

Billboards are textures that define complex outlines by using texture transparency. For example, rather than creating a tree using polygons, you can use an image of a tree, with the portion of the image outside the tree having an alpha of 0 (transparent) and the interior of the tree having an alpha of 1 (opaque). This is illustrated in Figure 14-14. This technique allows complex scenes to be built by compositing simple images together.

Figure 14-14 Texture Billboard
[Figure 14-14]

It is important to consider the antialiasing of the edges created by the texture's alpha pattern. If only 1 bit of alpha is used, then the pixel is either written or not. If more bits of alpha are used to create a smoother transition from opaque to transparent the edges will be blended with the background. Billboards should be rendered after all opaque background objects have finished rendering. There are several texel formats that allow multiple bits of alpha (see Section 14.6 "Color Index Frame Buffer") and ways of combining different types (see Section 14.3.5 "Combining Types"). To render this type of antialiased texture billboard, you must be in one or two cycle mode and you should use the render mode G_RM_AA_TEX_EDGE. Please see Section 15.7.4 "Texture Edge Mode, TEX_EDGE" for further details.

Texture billboards can also be rendered in a write-only fashion but this also implies no antialiasing of the texture edge. This mode is called "alpha compare" and basically thresholds the texel alpha with a register alpha value or a random alpha source to generate a write enable for the pixel. Please see Section 15.5.4 "Alpha Compare Calculation" for further details.

UP


14.2.7 Cloud (CLD) Render Mode

Cloud render mode is intended for rendering texture billboards that are not opaque, i.e. smoke clouds, explosions, etc. A Special care must be taken not to disturb the antialiasing for edges of things behind the transparent cloud because these edges will be seen through the cloud.

UP