Blend

This sample demonstrates the alpha blend function of the PPE peripheral.

Requirements

The sample supports the following development kits:

Development Kit

Hardware Platforms

Board Name

RTL87x2G HDK

RTL87x2G EVB

For more requirements, please refer to Quick Start

Wiring

None

Building and Downloading

This sample can be found in the SDK folder:

Project file: samples\peripheral\ppe\blend\proj\rtl87x2g\mdk

Project file: samples\peripheral\ppe\blend\proj\rtl87x2g\gcc

To build and run the sample, follow the steps listed below:

  1. Open Sample Project File.

  2. To build the target, follow the steps listed on the Generating App Image in Quick Start.

  3. After a successful compilation, the app bin app_MP_xxx.bin will be generated in the directory mdk\bin.

  4. To download app bin into EVB board, follow the steps listed on the MP Tool Download in Quick Start.

  5. Press reset button on EVB board and it will start running.

Experimental Verification

  1. After the sample is executed, observing the following log in the DebugAnalyzer window indicates successful blending:

PPE blend test passed 0

Code Overview

This chapter will be introduced according to the following several parts:

  1. Source code directory.

  2. Peripheral initialization will be introduced in chapter Initialization.

  3. Functional implementation after initialization will be introduced in chapter Functional implementation.

Source Code Directory

  1. Project directory: sdk\samples\peripheral\ppe\blend\proj

  2. Source code directory: sdk\samples\peripheral\ppe\blend\src

Source files are currently categorized into several groups as below.

└── Project: decompress
    └── ppe
        ├── config                   includes project construct configuration
        ├── display                  includes the peripheral drivers related with display
        └── Device                   includes startup code
            ├── startup_rtl.c
            └── system_rtl.c
        ├── CMSIS                    includes CMSIS header files
        ├── CMSE Library             non-secure callable lib
        ├── lib                      includes all binary symbol files that user application is built on
        ├── peripheral               includes all peripheral drivers and module code used by the application
        └── APP                      source code of PPE blend sample
            ├── main_ns.c
            └── ppe_test.c

Initialization

The initialization process is included in PPE_test().

  1. Initialize data of foreground buffer and background buffer.

  2. Initialize PPE structures that contain information of foreground and background.

source.address = (uint32_t) source_buffer;
source.memory = source_buffer;
source.color_key_en = DISABLE;
source.color_key_value = 0;
source.format = PPE_ABGR8888;
source.width = 64;
source.height = 64;

target.address = (uint32_t) target_buffer;
target.memory = target_buffer;
target.color_key_en = DISABLE;
target.color_key_value = 0;
target.format = PPE_ABGR8888;
target.width = 64;
target.height = 64;
  1. After determining translation of foreground, invoke PPE_blend() to start to blend.

ppe_translate_t trans = {.x = 0, .y = 0};
PPE_ERR err = PPE_blend(&source, &target, &trans, PPE_SRC_OVER_MODE);

Tip

About correctness of blending result, refer to Troubleshooting.

Functional Implementation

While running PPE_blend(), foreground will be blended to background from translated position. When this function has finished executing, it indicates PPE has also finished its work to blend.

Troubleshooting

Correctness Check

After PPE_blend() has been finished, the output buffer will be compared with golden data. If any error occurs, the following log will be displayed in DebugAnalyzer Tool:

PPE alpha blend error

And also the error code will be printed at the last line with the following log:

PPE blend test passed ‘error code’