0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-19 20:32:15 +02:00

docs,libobs: Remove obs_render_main_view()

Deprecated since 21.0
This commit is contained in:
derrod 2024-08-21 08:45:19 +02:00 committed by Ryan Foster
parent 07aa98ab34
commit bda463932e
3 changed files with 0 additions and 20 deletions

View File

@ -501,14 +501,6 @@ Video, Audio, and Graphics
---------------------
.. function:: void obs_render_main_view(void)
Renders the main view.
Note: This function is deprecated.
---------------------
.. function:: void obs_render_main_texture(void)
Renders the main output texture. Useful for rendering a preview pane

View File

@ -2153,12 +2153,6 @@ proc_handler_t *obs_get_proc_handler(void)
return obs->procs;
}
/* OBS_DEPRECATED */
void obs_render_main_view(void)
{
obs_view_render(&obs->data.main_view);
}
static void obs_render_main_texture_internal(enum gs_blend_type src_c,
enum gs_blend_type dest_c,
enum gs_blend_type src_a,

View File

@ -752,12 +752,6 @@ EXPORT signal_handler_t *obs_get_signal_handler(void);
/** Returns the primary obs procedure handler */
EXPORT proc_handler_t *obs_get_proc_handler(void);
#ifndef SWIG
/** Renders the main view */
OBS_DEPRECATED
EXPORT void obs_render_main_view(void);
#endif
/** Renders the last main output texture */
EXPORT void obs_render_main_texture(void);