Skip to content

Commits

Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Jan 3, 2023

  1. Copy the full SHA
    da33453 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    7251fdd View commit details
    Browse the repository at this point in the history
  3. rendervulkan: Apply tonemapping to HDR content on SDR outputs

    Also add a debug flag for Reinhard.
    Joshua-Ashton committed Jan 3, 2023
    Copy the full SHA
    d1fd41f View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    905376f View commit details
    Browse the repository at this point in the history
  5. color_helpers: Handle naughty clients/EDIDs with more grace

    Avoid asserting and simply clamping to deal with broken EDIDs like
    on LG OLED panels for now.
    Joshua-Ashton committed Jan 3, 2023
    Copy the full SHA
    0c3653d View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    d2cc74c View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    8a16fa3 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    ae02e05 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    6d6cc98 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2023

  1. layer: Enable VK_KHR_xcb_surface extension

    Needed for fallback surface.
    Joshua-Ashton committed Jan 2, 2023
    Copy the full SHA
    acbb719 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    ece20d0 View commit details
    Browse the repository at this point in the history
  3. layer: Free reply in getToplevelWindow when root is reached

    I need to write some wrapper here, this crappy xcb api is rife for errors liek this.
    Joshua-Ashton committed Jan 2, 2023
    Copy the full SHA
    89456dd View commit details
    Browse the repository at this point in the history
  4. layer: Free attributeReply after use

    Oops!
    Joshua-Ashton committed Jan 2, 2023
    Copy the full SHA
    d84d0fc View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    6a6a89c View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    b5e2602 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    eb29ba4 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2023

  1. steamcompmgr: reap children like Linux on some BSDs

    DragonFly and FreeBSD adopted a similar API to Linux. Other sytems
    maybe interested as well, so add a warning.
    
    src/steamcompmgr.cpp:51:10: fatal error: 'sys/prctl.h' file not found
     #include <sys/prctl.h>
             ^~~~~~~~~~~~~
    src/steamcompmgr.cpp:3118:9: error: use of undeclared identifier 'PR_SET_CHILD_SUBREAPER'
            prctl( PR_SET_CHILD_SUBREAPER, 1, 0, 0, 0 );
                   ^
    jbeich authored and Joshua-Ashton committed Jan 1, 2023
    Copy the full SHA
    50d5ea8 View commit details
    Browse the repository at this point in the history
  2. main: don't renice as non-root on non-Linux

    On BSD systems only the super-user may lower priority values.
    
    meson.build:40:0: ERROR: Dependency "libcap" not found, tried pkgconfig and cmake
    
    src/main.cpp:7:10: fatal error: 'sys/capability.h' file not found
     #include <sys/capability.h>
              ^~~~~~~~~~~~~~~~~~
    src/main.cpp:244:2: error: unknown type name 'cap_t'
            cap_t caps = cap_get_proc();
            ^
    src/main.cpp:244:15: error: use of undeclared identifier 'cap_get_proc'
            cap_t caps = cap_get_proc();
                         ^
    src/main.cpp:247:3: error: unknown type name 'cap_flag_value_t'
                    cap_flag_value_t nicecapvalue = CAP_CLEAR;
                    ^
    src/main.cpp:247:35: error: use of undeclared identifier 'CAP_CLEAR'
                    cap_flag_value_t nicecapvalue = CAP_CLEAR;
                                                    ^
    src/main.cpp:248:23: error: use of undeclared identifier 'CAP_SYS_NICE'
                    cap_get_flag( caps, CAP_SYS_NICE, CAP_EFFECTIVE, &nicecapvalue );
                                        ^
    src/main.cpp:248:37: error: use of undeclared identifier 'CAP_EFFECTIVE'
                    cap_get_flag( caps, CAP_SYS_NICE, CAP_EFFECTIVE, &nicecapvalue );
                                                      ^
    src/main.cpp:250:24: error: use of undeclared identifier 'CAP_SET'
                    if ( nicecapvalue == CAP_SET )
                                         ^
    jbeich authored and Joshua-Ashton committed Jan 1, 2023
    Copy the full SHA
    241df25 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2022

  1. Copy the full SHA
    ba46764 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    5b805dd View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    1fea04e View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2022

  1. Copy the full SHA
    8f0008e View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    31c94f8 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    c25a368 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    269bbc8 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    b033bbe View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    6bc6a85 View commit details
    Browse the repository at this point in the history
  7. layer: Respect vk_x11_override_min_image_count

    Avoids regressing things
    Joshua-Ashton committed Dec 30, 2022
    Copy the full SHA
    a50ead0 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    3591f2d View commit details
    Browse the repository at this point in the history
  9. layer: Only expose HDR formats when gamescope HDR output is enabled a…

    …nd it isn't blacklisted for this app
    Joshua-Ashton committed Dec 30, 2022
    Copy the full SHA
    a4f30a8 View commit details
    Browse the repository at this point in the history
  10. steamcompmgr: Add GAMESCOPE_HDR_OUTPUT_FEEDBACK

    Exposes whether HDR output is currently enabled.
    Joshua-Ashton committed Dec 30, 2022
    Copy the full SHA
    acf76d6 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    1ab8757 View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    efd47c3 View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    418a84d View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    06c7c3e View commit details
    Browse the repository at this point in the history
Older