Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize GETDISP Websocket Command #200

Merged
merged 4 commits into from
Nov 11, 2024

Commits on Nov 6, 2024

  1. WEB: Optimize GETDISP command

    Add a simple "compression" to framebuffer uploads. The unused
    upper 8 bits of an RGB value are now a repeat count. It tells how
    often the same color shall be used on the pixels that follow.
    
    Example:
    To upload an empty black 32x8 frame buffer, only a
    single 0xFF000000 data value will be send.
    nhjschulz committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    5311ba9 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. Display: Fix GetDisp Compression

    Use >>> operator in javascript for unsigned value shifting.
    
    Use real pixel resolution instead of
    hardcoded 32x8.
    nhjschulz committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    1f7493c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f125308 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Review feedback updates

    nhjschulz committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    5f52be5 View commit details
    Browse the repository at this point in the history