- Dec 16, 2024
-
-
MultiEffect based DynamicShadow hides the source item because it renders the source item itself again anyway. However, it does not set itself invisible when it can not be used (software renderer). The binding that makes the source item invisible checks if the effect is visible. Here, we can simply bind the visibility to shader type where the graphics backend needs to support RHI shader for the effect to work. This is currently OpenGL, Vulkan, Metal, DirectX; so no support for Software or OpenVG scene graph adaptations which are not targeted by Qt RHI for obvious reasons.
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
- Dec 15, 2024
-
-
macosx: Do not hide video view controller view before applying view for selected segment, fixing crash Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Currently layering (second pass) is used to render the blurred source offscreen, and then apply the rest of the effects (tint, exclusion and noise) to the offscreen source when drawing the result in the interface. Note that the first pass layering for the source item is necessary for blurring and can not be disabled. This is not ideal, because layering requires allocating resources for offscreen rendering. The most ideal solution would be to modify the fragment shader of the blur effect. But we currently do not do run time shader compilation, and MultiEffect does not accept overriding its shader effect. At the same time, FastBlur from Qt 5 Compat is used as fallback when Qt Quick Effects is not available. In a hypothetical scenario where we could override the fragment shader, it would mean that we would need to handle these two cases differently because MultiEffect and FastBlur use different shaders. As a workaround, I propose having an underlay filter rectangle that acts as exclusion (due to opacity) and colorization (tint), and having an overlay as the noise layer.
-
fix: #28809
-
when controls are pinned, they are not supposed to become hidden, so we shouldn't rely on their visible state
-
fix: #28810
-
-
-
-
-
-
-
-
Qt docs state that "It is recommended that the delegate's size be a whole number to avoid sub-pixel alignment of items."
-
Qt docs state that "It is recommended that the delegate's size be a whole number to avoid sub-pixel alignment of items."
-
Qt docs state that "It is recommended that the delegate's size be a whole number to avoid sub-pixel alignment of items."
-
Qt docs state that "It is recommended that the delegate's size be a whole number to avoid sub-pixel alignment of items."
-
ModelRecoveryAgent helps recovering a model if the application closes abruptly, this can be a simple crash or power loss. Currently it is only used for the main playlist. It works well for that use case, but if a new instance of the application starts while the old instance still runs, it considers the previous instance to be closed abruptly. This is a known limitation, and now it should be corrected with this change. Note that currently we do not support recovering multiple models of same type. This means that the instance holding the lock manages recovery, and if you have multiple instances open with different models, only the lock holder instance's model would be saved. There is currently no plan to support recovering multiple models of the same type. It is questionable if that would be useful in a media player, although it really makes sense with text editors to not lose data.
-
-
- Dec 14, 2024
-
-
Tristan Matthews authored
-
Tristan Matthews authored
-
Tristan Matthews authored
-
Tristan Matthews authored
-
Tristan Matthews authored
-