/* See LICENSE file for license and copyright information */ #ifndef RENDER_H #define RENDER_H #include #include #include #include "ft/document.h" typedef struct render_thread_s { girara_list_t* list; /**> The list of pages */ GThread* thread; /**> The thread object */ GMutex* lock; /**> Lock */ GCond* cond; /**> Condition */ } render_thread_t; /** * This function initializes a render thread * * @return The render thread object or NULL if an error occured */ render_thread_t* render_init(void); /** * This function destroys the render thread object * * @param render_thread The render thread object */ void render_free(render_thread_t* render_thread); /** * This function is used to add a page to the render thread list * that should be rendered. * * @param render_thread The render thread object * @param page The page that should be rendered * @return true if no error occured */ bool render_page(render_thread_t* render_thread, zathura_page_t* page); #endif // RENDER_H