2013-10-14 04:21:15 -07:00
|
|
|
#pragma once
|
2013-09-30 19:37:13 -07:00
|
|
|
|
2013-11-26 22:07:27 -08:00
|
|
|
#include <obs.h>
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct random_tex {
|
|
|
|
texture_t texture;
|
|
|
|
effect_t whatever;
|
|
|
|
};
|
|
|
|
|
2013-11-13 05:24:20 -08:00
|
|
|
EXPORT const char *random_getname(const char *locale);
|
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
EXPORT struct random_tex *random_create(const char *settings, obs_source_t source);
|
2013-09-30 19:37:13 -07:00
|
|
|
EXPORT void random_destroy(struct random_tex *rt);
|
|
|
|
EXPORT uint32_t random_get_output_flags(struct random_tex *rt);
|
|
|
|
|
2013-10-14 12:37:52 -07:00
|
|
|
EXPORT void random_video_render(struct random_tex *rt, obs_source_t filter_target);
|
2013-09-30 19:37:13 -07:00
|
|
|
|
2013-10-17 17:21:42 -07:00
|
|
|
EXPORT uint32_t random_getwidth(struct random_tex *rt);
|
|
|
|
EXPORT uint32_t random_getheight(struct random_tex *rt);
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|