1. 18 6月, 2019 1 次提交
  2. 17 6月, 2019 1 次提交
  3. 16 6月, 2019 3 次提交
  4. 14 6月, 2019 3 次提交
  5. 13 6月, 2019 1 次提交
  6. 12 6月, 2019 4 次提交
    • J
      UI: Fix editor inheriting source list stylesheet · 4d3414a1
      jp9000 提交于
      Fixes a bug where if the user gave a custom color to a source list item,
      the edit box used with renaming the item would also have that
      background color while editing the name, awkwardly.
      4d3414a1
    • J
      UI: Fix bug with custom source list item color · b5b11dbf
      jp9000 提交于
      If the user gave the source list item a custom color, the "background"
      stylesheet value would apply to children of the item widget, causing the
      lock/eye checkboxes to also have that background color added on top of
      the chosen color.  This is fixed by explicitly settings the background
      value to none on the lock/eye checkboxes.
      b5b11dbf
    • J
      UI: Fix tray icon showing up on startup even if off · 58ce89bb
      jp9000 提交于
      Apparently certain versions of Qt have a bug where the tray icon's
      internal "visible" variable is set to false despite the fact that it
      still shows.  Calling show() first before calling hide() sets the
      internal boolean value and fixes the issue with the hide call.
      58ce89bb
    • J
      libobs: Fix null pointer dereference · d5708d65
      jp9000 提交于
      d5708d65
  7. 11 6月, 2019 2 次提交
  8. 04 6月, 2019 2 次提交
  9. 02 6月, 2019 5 次提交
  10. 01 6月, 2019 3 次提交
  11. 31 5月, 2019 3 次提交
  12. 30 5月, 2019 1 次提交
  13. 29 5月, 2019 4 次提交
  14. 25 5月, 2019 2 次提交
  15. 24 5月, 2019 4 次提交
    • J
      libobs: Remove unnecessary frame pipelining · 8d6ed988
      James Park 提交于
      Remove three instances of unnecessary double-buffering. They are not
      needed to avoid stalls, and cause increased memory traffic when
      measured on Intel HD 530, presumably because texture data will remain
      in cache if sampled immediately after write.
      
      (Note: GPU timings from Intel GPA are volatile.)
      
      NV12, 3 Draws:
      RGBA -> UYVX: 628 us -> 543 us
      UYVX -> Y: 522 us -> 507 us
      UYVX -> UV: 315 us -> 187 us
      Total, Duration: 1594 us -> 1153 us
      Total, GTI Read Throughput: 25.2 MB -> 15.9 MB
      8d6ed988
    • J
      UI: Ensure frontend event is removed on object deletion · f130e875
      jp9000 提交于
      f130e875
    • J
      Merge pull request #1893 from jpark37/fix-win-speaker-macros · 82afc219
      Jim 提交于
      win-wasapi: Speaker enum fixes
      82afc219
    • J
      win-wasapi: Speaker enum fixes · 286e43bb
      James Park 提交于
      Remove KSAUDIO_SPEAKER_2POINT1 because it is included in the Windows
      SDK. (I'm guessing it wasn't before.)
      
      Redefine 4POINT1 as KSAUDIO_SPEAKER_SURROUND|SPEAKER_LOW_FREQUENCY
      instead of KSAUDIO_SPEAKER_QUAD|SPEAKER_LOW_FREQUENCY. See definitions:
      
      FFmpeg 4.1: FL+FR+FC+LFE+BC
      WASAPI QUAD: FL+FR+BL+BR (looks wrong)
      WASAPI SURROUND: FL+FR+FC+BC
      WASAPI LOW_FREQUENCY: LFE
      286e43bb
  16. 23 5月, 2019 1 次提交