how to modify the hdmi LCD bit depth, for emample how to change RGB888 to RGB565,use what command or write a application?
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.
Hello,
The depth would be defined in your userspace application code. Depending on the framework being used, they usually give an option for the depth field. Here is a reference document: https://www.khronos.org/opengl/wiki/Image_Format
Regards,
Krunal
For example, if you are using Qt framework they will have a mechanism to configure the depth buffer. If you are using native opengles, it will have it's own mechanism for selecting depth buffer. In summary, your custom userspace application will need to select the appropriate depth buffer.
Regards,
Krunal