You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have function tb_get_cell(x, y)
of some kind that returns content on specific cell. It is complement to function tb_set_cell(...)
For example I want to render something over background that is dynamic, so I need to get first backround of a cell and then overite ch, but bg should remain same.
I can do it with
struct tb_cell *cell;
cellbuf_get(&global.back, x, y, &cell);
but it would be better to hide implementation in my opinion and as I said to have complete API.
The text was updated successfully, but these errors were encountered:
It would be nice to have function
tb_get_cell(x, y)
of some kind that returns content on specific cell. It is complement to function tb_set_cell(...)
For example I want to render something over background that is dynamic, so I need to get first backround of a cell and then overite ch, but bg should remain same.
I can do it with
but it would be better to hide implementation in my opinion and as I said to have complete API.
The text was updated successfully, but these errors were encountered: