1. 13 9月, 2018 2 次提交
  2. 12 9月, 2018 4 次提交
  3. 11 9月, 2018 1 次提交
    • J
      obs-browser: Fix local macOS build issues · 2c0f65c3
      jp9000 提交于
      (This also modifies the CI scripts accordingly)
      
      It was difficult to build local obs-browser builds on macOS due to the
      way the frameworks work and libraries are linked.  This solves that
      issue so that local builds of obs-browser should always work fine.
      2c0f65c3
  4. 10 9月, 2018 7 次提交
  5. 09 9月, 2018 4 次提交
  6. 08 9月, 2018 8 次提交
    • A
      docs/sphinx: Add annotation api functions · 12f92540
      Alex Anderson 提交于
      Add documentation for:
      
      size_t gs_param_get_num_annotations(const gs_eparam_t *param)
      
      gs_eparam_t *gs_param_get_annotation_by_idx(const gs_eparam_t *param,
      		size_t annotation);
      
      gs_eparam_t *gs_param_get_annotation_by_name(const gs_eparam_t *param,
      		const char *name);
      
      void *gs_effect_get_val(gs_eparam_t *param);
      
      void *gs_effect_get_default_val(gs_eparam_t *param);
      
      size_t gs_effect_get_val_size(gs_eparam_t *param);
      
      size_t gs_effect_get_default_val_size(gs_eparam_t *param);
      12f92540
    • A
      libobs: Add additional gs_effect_get_ functions · e0cd45be
      Alex Anderson 提交于
      Adds api functions to extract gs_eparam_t values, including
      gs_effect_get_val(), gs_effect_get_val_size(),
      gs_effect_get_default_val() and gs_effect_get_default_val_size()
      e0cd45be
    • A
      libobs: Add HLSL annotation parsing · af670869
      Alex Anderson 提交于
      Gives the ability to retrieve param annotations. Blocks wrapped in <>
      following a parameter.
      
      For example:
      float slider < float max_value = 10.0; float min_value = 0.0; >;
      
      These blocks are not for shading purposes but to help describe the
      shader's gui as in the example above.
      
      Adds graphics api functions for retrieving annotations:
      size_t gs_param_get_num_annotations(const gs_eparam_t *param);
      
      gs_eparam_t *gs_param_get_annotation_by_idx(const gs_eparam_t *param,
      		size_t annotation);
      
      gs_eparam_t *gs_param_get_annotation_by_name(const gs_eparam_t *param,
      		const char *name);
      af670869
    • J
      Merge pull request #1346 from dtcooper/master · 78d940e0
      Jim 提交于
      libobs/UI: Allow Access To argc/argv
      78d940e0
    • J
      Merge pull request #1442 from cg2121/stereo-audio-balancing · 413e8e6a
      Jim 提交于
      UI: Implement stereo balancing
      413e8e6a
    • J
      Merge pull request #1392 from Andersama/decklink-deactivate-when-not-shown · ef6a8366
      Jim 提交于
      decklink: Add deactivate when not showing option to decklink
      ef6a8366
    • J
      Merge pull request #1435 from cg2121/about-dialog · 461acd63
      Jim 提交于
      UI: Add about dialog
      461acd63
    • J
      libobs/util: Fix undefined behavior and optimize util_mul64_64 · e8eec22d
      jp9000 提交于
      Shifting an integer larger than its bit width can have undefined
      behavior.  This not only fixes that issue, but also optimizes the
      shift functions.
      e8eec22d
  7. 07 9月, 2018 12 次提交
  8. 06 9月, 2018 2 次提交