This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-AM437X: Alpha blending overlay

Part Number: PROCESSOR-SDK-AM437X

Tool/software:

Hello,

I'm developing a kind of device by porting the linux kernel(3.12.10) to the AM437X.

And, I'm using Qt application for displaying camera image.

FILE *f;

/* Set manager for alphablending */
f = fopen("/sys/devices/platform/omapdss/manager0/alpha_blending_enabled", "w");
fprintf(f,"%d",1);
fclose(f);

f = fopen("/sys/devices/platform/omapdss/manager0/trans_key_enabled", "w");
fprintf(f,"%d",1);
fclose(f);

like this code.

At this, I want to display an image with transparency.

The UI is overlaid with transparent images(transparency: 60%), but the camera is not.

How can I solve this problem?