- Jan 08, 2022
-
-
The path to card* is different on Linux and on other systems like some BSD ones supporting the DRM infrastructure.
-
Not all planes can be used with every CRTC, and especially when there are multiple connectors plugged. Check that the corresponding CRTC is compatible with the plane we probed before selecting it. This avoids drmModeSetPlane failing with invalid CRTC -EINVAL errors.
-
Shifts is more usual and easier to read here.
-
This is not using drmAvailable() which only checks against minor=0, since card0 might not be available or not support DRM while card1 might support it and be selected by --kms-device. In addition, print the debug information about the current underlying DRM driver implementation used. Note that according to NVidia's DRM documentation[^1]: DRM-NVDC does not populate the drmVersionPtr structure's date, major, minor, and patchlevel fields. [^1]: https://docs.nvidia.com/jetson/l4t-graphics/group__direct__rendering__manager.html#gaabb52f28bfc81b9af64866f88131d513
-
Add an option, --kms-connector, to target an arbitrary connector instead of using the first suitable connector available. This is an equivalent to selecting the output screen in the VLC API.
-
-
-
Apply the settings from the video output configuration, since KMS is able to do rescaling and cropping.
-
Avoid additional indentation level by using early exit on error.
-
This is breaking the plugin option, but --kms is a really bad naming for selecting the device it's rendering onto (is it the device file? the connector?), and it would have been much better suited for enabling or not the KMS window.
-
The framebuffer from the previous KMS state was lost and not recoverable once the KMS module exited. It was only possible to reset the state by switching TTY and switching back to the one where KMS was used.
-
KMS is really the windowing part, put DRM framebuffer vout display into a separate file.
-
Implement the vout window interface for the KMS module to allocate the framebuffer once for multiple playback and split the connector selection and KMS initialization and cleanup from the vout_display. This is done as a submodule for now, the display module will actually be splitted afterwards.
-
The new KMS window represents an output from the DRM subsystem into a given connector through the specified CRTC, or in simpler term, an output screen. It allows running a "window" even in the case where no window manager are presents, but it also makes sense in windowed environment thanks to DRM leasing features.
-
It avoids using autoconf conditionals and defining -rpath manually, and makes HAVE_KMS available in the Makefile.am.
-
Rémi Denis-Courmont authored
-
-
-
-
The doc doesn't say we have to release it but it makes sense. If it was received by a ComPtr it would be.
-
Instantiate is the correct spelling, typos found and reworked from codespell. The patch is separated given that it produces a change of API, to hightlight the change itself.
-
Typos found and reworked from codespell.
-
Typos found and reworked from codespell.
-
Typos found and reworked from codespell.
-
-
defines property more accurately, also mirrors similar property in KeyNavigableTableView
-
ExpandGridView already has selectionModel just update it directly
-
ExpandGridView already has selectionModel just update it directly
-
mingw/wine define some things that the C++ compilers don't like. We currently don't use these helpers anyway. Also clean the includes since we always end up including d3d11.h in d3d11_xxx.h headers.
-
mingw/wine define some things that the C++ compilers don't like. We currently don't use these helpers anyway.
-
- Jan 07, 2022
-
-
François Cartegnie authored
-
Viewpoint and title are now only setup when the vout is just started. There was already a check in DisplayVoutTitle() preventing to spam the same title again and again.
-
-
fix #26203
-
-
-
-
-
(non-functional) - removed pointless init of `p_config` (changed two lines later). - merged two condition blocks working on the same condition (core cat/subcat node panel vs. plugin node panel logic). - renamed `head` to `heading` for clarity in doing so. - explained the commented-on `p_item++` in doing so. - dropped unnecessary `help` intermediary.
-
each creation of a panel for a non-plugin (cat or subcat) node resulted in a call to `module_get_main()` to obtain the pointer to the main module to thus be in a position to get to the main config set. by doing this once when creating the `PrefsTree` instance and caching it, we can copy it into the existing module pointer property of cat and subcat nodes (which was only used previously for plugin type nodes) when they are created, and thus we will already have the necessary pointer available when creating the panels, saving dozens of calls.
-