Wii Homebrew – Metaphrasis v0.1.0

NOT a butterfly - Image 1No, this does not involve any caterpillars shedding off their cocoons to grow into pretty butterflies. Metaphrasis v0.1.0 is a “static conversion class for transforming RGBA image buffers into various GX texture formats for Wii homebrew development,” so says Armin Tamzarian, the developer. More to find out so click on full article now.

Download: Metaphrasis v0.1.0

Metaphrasis v0.1.0 - Image 1No, this does not involve any caterpillars shedding off their cocoons to grow into pretty butterflies. Metaphrasis v0.1.0 is a “static conversion class for transforming RGBA image buffers into various GX texture formats for Wii homebrew development,” so says Armin Tamzarian, the developer.

So, how to install the source code:

  1. Extract the Metaphrasis archive.
  2. Copy the contents of the src directory into your project’s development path.
  3. Include the Metaphrasis header file in your code using syntax such as the following:

                      * include “Metaphrasis.h”

How to install the Library:

  1. Extract the Metaphrasis archive.
  2. Copy the contents of the lib directory into your devKitPro/libogc directory.
  3. Include the Metaphrasis header file in your code using syntax such as the following:

                        * include “Metaphrasis.h”

How to use:

  • Create a buffer full of 32-bit RGBA values noting both the pixel height and width of the buffer.
  • Call one of the many conversion routines from within your code. (Note: All methods within the Metaphrasis class are static and thus no class instance need be allocated)
    • uint32_t* rgba8Buffer = Metaphrasis::convertBufferToRGBA8(rgbaBuffer, bufferWidth, bufferHeight);
  • Free your temporary RGBA value buffer if you no longer need said values.
Currently supported conversion routines are as follows:

  • convertBufferToI4
  • convertBufferToI8
  • convertBufferToIA4
  • convertBufferToIA8
  • convertBufferToRGBA8
  • convertBufferToRGB565
  • convertBufferToRGB5A3

Download: Metaphrasis v0.1.0

Via WiiBrew

Add a Comment

Your email address will not be published. Required fields are marked *