Skip to content
Snippets Groups Projects
  1. Sep 25, 2014
    • Jim's avatar
      Basic UI: Remove "CPU" from "x264 CPU Preset" text · fd64fbb2
      Jim authored
      I feel like people keep mistaking how x264 preset functions.  They often
      associate it with their own CPU speed, and I feel the name does not help
      with that issue.  I think it may be for the best to just take it out.
      At best, it will keep people away from using it unless they know what
      they're doing, and at worst, people at least won't be able to associate
      it with their CPU as easily anymore.
      fd64fbb2
    • Jim's avatar
      Basic UI: Clarify "advanced encoder settings" text · ecc102fc
      Jim authored
      Change checkbox with text "Advanced Encoder Settings" to "Use Advanced
      Encoder Settings".  This way it will hint that the settings will be
      disabled when unchecked.
      ecc102fc
  2. Sep 23, 2014
  3. Sep 22, 2014
  4. Sep 19, 2014
    • Jim's avatar
      Remove unused variables · 732d24ca
      Jim authored
      732d24ca
    • Jim's avatar
      Replace ARB_separate_shader_objects extension · 3967c635
      Jim authored
      This replaces the ARB_separate_shader_objects extension with traditional
      linked shaders.  I was able to get the existing system to use linked
      shaders without having to change any libobs graphics API.
      
      This essentially creates a linked list of shader programs with
      references to the shaders they link.  Before draw, it searches that
      linked list for a particular pixel/vertex shader pair, and the linked
      program associated with it.  If no matching program exists, it creates
      the program.
      3967c635
  5. Sep 17, 2014
  6. Sep 16, 2014
  7. Sep 15, 2014
  8. Sep 14, 2014
  9. Sep 12, 2014
    • Jim's avatar
      Do not call dlclose on modules · 2446f621
      Jim authored
      This apparently can cause issues with certain modules (as noted by
      faruton with his browser plugin)
      2446f621
    • Jim's avatar
      win-dshow: Use a single thread per device · 4e786357
      Jim authored
      This prevents certain issues I've encountered with devices where they
      expect to shut down in a specific thread they started up in, as well as
      a number of other issues, such as the configuration dialogs.
      
      The configuration dialogs require that a message loop be present, and
      this was not the case previously because everything was in the video
      thread, which has no windows-specific code.
      
      Configuration/crossbar/etc dialogs will now execute correctly.
      4e786357
Loading