logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

tickit_renderbuffer_new - create a new render buffer instance

Description

tickit_renderbuffer_new()  creates a new TickitRenderBuffer instance of the given size. Once constructed,
       the size is fixed. Initially it has a clipping region  covering  the  entire  area,  a  zero  translation
       offset,  no  applied  masks,  no  stored pen and no virtual cursor position. It can be reset back to this
       state at any time by calling tickit_renderbuffer_reset(3).

       The reference count of a newly-constructed render buffer instance will be one. This can be incremented or
       decremented using tickit_renderbuffer_ref(3) and tickit_renderbuffer_unref(3). When its  reference  count
       reaches zero it is destroyed.

Name

       tickit_renderbuffer_new - create a new render buffer instance

Return Value

       If successful, tickit_renderbuffer_new() returns a pointer to the new instance.

See Also

tickit_renderbuffer_text(3),      tickit_renderbuffer_blit(3),      tickit_renderbuffer_flush_to_term(3),
       tickit_renderbuffer(7), tickit(7)

                                                                                      TICKIT_RENDERBUFFER_NEW(3)

Synopsis

#include<tickit.h>TickitRenderBuffer*tickit_renderbuffer_new(intlines,intcols);

       Link with -ltickit.

See Also