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.

Mouse cursor in Matrix GUI Applcation

Other Parts Discussed in Thread: AM3892

Hi,

We have custom AM3892 based board, we managed to run Linux PSP on it. The question is about Matrix GUI Application, we connect display without touchscerren and mouse via USB to device and run Matrix GUI Application. Everything works properly but when mouse cursor goes out of the screen, cursor dissappears and never appears back. In fact mouse position processing properly, because by right-clicking some small image appears in different part of screen, following assumed mouse shiftings.

How can it be solved?

 

Best regards,

Anton

  • try to set resolution of your GUI application by

    if ((res.Numerator / res.Denominator) < 1.55) // Not widescreen
    {
    width_ratio = 1024f;
    height_ratio = 768f;
    }

    this value might get wrong at run time. Try to assign inside code, 

    Best luck