Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. 10bit surface with eglfs_kms_egldevice backend
Forum Updated to NodeBB v4.3 + New Features

10bit surface with eglfs_kms_egldevice backend

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
1 Posts 1 Posters 173 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    Jetsy
    wrote on last edited by
    #1

    Hi! We are trying to do a 10bit HDMI output with eglfs_kms_egldevice on Tegra Xavier. We render with texture format
    GL_UNSIGNED_INT_2_10_10_10_REV_EXT with the scene graph engine. There's no error with OpenGL. however,
    we noticed that the QSurfaceFormat is always RGBA 8888 which is a 24 color depth. We tried to manually set the QQuickView surface to 32 Bit depth:

    QSurfaceFormat format;
    format.setAlphaBufferSize(2);
    format.setRedBufferSize(10);
    format.setGreenBufferSize(10);
    format.setBlueBufferSize(10);
    format.setDepthBufferSize(32);
    this->setFormat(format);

    However, this will not successfully set the format.

    Is it a Qt issue or a Tegra backend issue?

    Thanks for answering our question!

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved