some static analysis cleanup
This commit is contained in:
@@ -74,12 +74,12 @@ void random_video_render(struct random_tex *rt, obs_source_t filter_target)
|
||||
technique_end(tech);
|
||||
}
|
||||
|
||||
int random_getwidth(struct random_tex *rt)
|
||||
uint32_t random_getwidth(struct random_tex *rt)
|
||||
{
|
||||
return texture_getwidth(rt->texture);
|
||||
}
|
||||
|
||||
int random_getheight(struct random_tex *rt)
|
||||
uint32_t random_getheight(struct random_tex *rt)
|
||||
{
|
||||
return texture_getheight(rt->texture);
|
||||
}
|
||||
|
@@ -17,8 +17,8 @@ EXPORT uint32_t random_get_output_flags(struct random_tex *rt);
|
||||
|
||||
EXPORT void random_video_render(struct random_tex *rt, obs_source_t filter_target);
|
||||
|
||||
EXPORT int random_getwidth(struct random_tex *rt);
|
||||
EXPORT int random_getheight(struct random_tex *rt);
|
||||
EXPORT uint32_t random_getwidth(struct random_tex *rt);
|
||||
EXPORT uint32_t random_getheight(struct random_tex *rt);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Reference in New Issue
Block a user