Skip to content
Snippets Groups Projects
  1. Jun 03, 2022
    • Sean McGovern's avatar
      fb: remove support · 2999e6a0
      Sean McGovern authored and Steve Lhomme's avatar Steve Lhomme committed
      The Linux fbdev subsystem has been deprecated for more than a decade as there are better options available now.
      2999e6a0
    • Steve Lhomme's avatar
      video_output: remove dropped_current_frame test · dd8c8e03
      Steve Lhomme authored
      When we go in the `(next != NULL)` section, we have a new picture to render.
      We need to wait until its "refresh" date to start the rendering.
      It doesn't matter if there was a picture shown before that one.
      
      The code is almost the same as before where dropped_current_frame was almost
      always true. The only time it was false was:
      * first picture and next is not NULL (first pic & next NULL is impossible here)
      * not first picture and next is NULL
      
      So the new code only changes the case where it is the "first picture and next
      is not NULL". But in that case, first was true and therefore the test was
      not passing, just like now.
      
      It is logically equivalent to the code before. But now it's clear that when we
      don't have a next picture we request a redisplay (of displayed.current).
      dd8c8e03
    • Steve Lhomme's avatar
      video_output: clarify the display.current replacement · e6fe279c
      Steve Lhomme authored
      We don't release the picture because there's dropped_current_frame. We have to
      release it because we're replacing the value and we were holding the picture
      in there.
      e6fe279c
  2. Jun 02, 2022
  3. Jun 01, 2022
  4. May 31, 2022
Loading