ui: use stencil buffer to draw polygons (#28902)

* Update ui.cc

* add a bunch of debugging stuff i don't want to lose

* Revert "add a bunch of debugging stuff i don't want to lose"

This reverts commit 2de6ab5b68.

* enable stencil buffer

* lower ui CPU usage

* Revert "lower ui CPU usage"

This reverts commit 650241c0d8.
pull/28927/head
Shane Smiskol 2 years ago committed by GitHub
parent d6e1796d92
commit 936bfcd7ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      selfdrive/ui/qt/util.cc

@ -96,6 +96,7 @@ void setQtSurfaceFormat() {
fmt.setRenderableType(QSurfaceFormat::OpenGLES);
#endif
fmt.setSamples(16);
fmt.setStencilBufferSize(1);
QSurfaceFormat::setDefaultFormat(fmt);
}

Loading…
Cancel
Save