New upstream version 0.15.4+dfsg1
This commit is contained in:
parent
55d5047af0
commit
67704ac59c
359 changed files with 8423 additions and 1050 deletions
10
libobs/obs.h
10
libobs/obs.h
|
|
@ -112,6 +112,8 @@ enum obs_allow_direct_render {
|
|||
};
|
||||
|
||||
enum obs_scale_type {
|
||||
OBS_SCALE_DISABLE,
|
||||
OBS_SCALE_POINT,
|
||||
OBS_SCALE_BICUBIC,
|
||||
OBS_SCALE_BILINEAR,
|
||||
OBS_SCALE_LANCZOS
|
||||
|
|
@ -338,6 +340,9 @@ EXPORT int obs_open_module(obs_module_t **module, const char *path,
|
|||
*/
|
||||
EXPORT bool obs_init_module(obs_module_t *module);
|
||||
|
||||
/** Logs loaded modules */
|
||||
EXPORT void obs_log_loaded_modules(void);
|
||||
|
||||
/** Returns the module file name */
|
||||
EXPORT const char *obs_get_module_file_name(obs_module_t *module);
|
||||
|
||||
|
|
@ -1253,6 +1258,11 @@ EXPORT void obs_sceneitem_set_crop(obs_sceneitem_t *item,
|
|||
EXPORT void obs_sceneitem_get_crop(const obs_sceneitem_t *item,
|
||||
struct obs_sceneitem_crop *crop);
|
||||
|
||||
EXPORT void obs_sceneitem_set_scale_filter(obs_sceneitem_t *item,
|
||||
enum obs_scale_type filter);
|
||||
EXPORT enum obs_scale_type obs_sceneitem_get_scale_filter(
|
||||
obs_sceneitem_t *item);
|
||||
|
||||
EXPORT void obs_sceneitem_defer_update_begin(obs_sceneitem_t *item);
|
||||
EXPORT void obs_sceneitem_defer_update_end(obs_sceneitem_t *item);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue