Home
last modified time | relevance | path

Searched refs:ncplane_at_yx_cell (Results 1 – 14 of 14) sorted by relevance

/dports/devel/notcurses/notcurses-3.0.1/src/tests/
H A Dfills.cpp255 CHECK(1 == ncplane_at_yx_cell(n_, 0, 0, &d));
277 CHECK(1 == ncplane_at_yx_cell(n_, y, x, &d));
296 CHECK(1 == ncplane_at_yx_cell(n_, 0, 0, &d));
316 CHECK(1 == ncplane_at_yx_cell(n_, 0, 0, &d));
321 CHECK(1 == ncplane_at_yx_cell(n_, 0, 0, &d));
373 CHECK(0 < ncplane_at_yx_cell(p1, 0, i, &cp));
382 CHECK(0 < ncplane_at_yx_cell(p1, 0, i, &cp));
391 CHECK(0 < ncplane_at_yx_cell(p1, 0, i, &cp));
418 CHECK(0 < ncplane_at_yx_cell(p1, 0, i, &cp));
431 CHECK(0 < ncplane_at_yx_cell(p3, 0, i, &c3));
[all …]
H A Dwide.cpp120 ncplane_at_yx_cell(n_, 0, 0, &c);
122 ncplane_at_yx_cell(n_, 0, 1, &c);
124 ncplane_at_yx_cell(n_, 0, 2, &c);
126 ncplane_at_yx_cell(n_, 1, 0, &c);
128 ncplane_at_yx_cell(n_, 1, 1, &c);
147 ncplane_at_yx_cell(n_, 0, 0, &c);
151 ncplane_at_yx_cell(n_, 0, 1, &c);
153 ncplane_at_yx_cell(n_, 0, 2, &c);
173 ncplane_at_yx_cell(n_, 0, 0, &c);
177 ncplane_at_yx_cell(n_, 0, 1, &c);
[all …]
H A Dpalette.cpp73 CHECK(0 < ncplane_at_yx_cell(n_, 0, 0, &r));
H A Dplane.cpp858 CHECK(1 == ncplane_at_yx_cell(n_, 0, 0, &c));
863 CHECK(1 == ncplane_at_yx_cell(n_, 0, 1, &c));
/dports/devel/notcurses/notcurses-3.0.1/src/demo/
H A Dhighcon.c106 ncplane_at_yx_cell(n, f / dimx, f % dimx, &c); in highcon_demo()
113 ncplane_at_yx_cell(n, l / dimx, l % dimx, &c); in highcon_demo()
H A Dwhiteout.c89 ncplane_at_yx_cell(n, s->y, s->x, &s->lightup); in wormy_top()
/dports/devel/notcurses/notcurses-3.0.1/src/lib/
H A Dfill.c379 if(ncplane_at_yx_cell(src, srcy, srcx, &c1) < 0){ in rotate_2x1_cw()
382 if(ncplane_at_yx_cell(src, srcy, srcx + 1, &c2) < 0){ in rotate_2x1_cw()
420 if(ncplane_at_yx_cell(src, srcy, srcx, &c1) < 0){ in rotate_2x1_ccw()
423 if(ncplane_at_yx_cell(src, srcy, srcx + 1, &c2) < 0){ in rotate_2x1_ccw()
H A Dmenu.c339 if(ncplane_at_yx_cell(ncm->ncp, ypos, xoff + ncm->sections[i].shortcut_offset, &cl) < 0){ in write_header()
523 if(ncplane_at_yx_cell(n->ncp, ypos, xpos + 1 + sec->items[i].shortcut_offset, &cl) < 0){ in ncmenu_unroll()
H A Dnotcurses.c258 return ncplane_at_yx_cell(n, n->y, n->x, c); in ncplane_at_cursor_cell()
261 int ncplane_at_yx_cell(ncplane* n, int y, int x, nccell* c){ in ncplane_at_yx_cell() function
3137 if((clen = ncplane_at_yx_cell(nc, y, x, &ncl)) < 0){
/dports/devel/notcurses/notcurses-3.0.1/doc/man/man3/
H A Dnotcurses_plane.3.md120 **int ncplane_at_yx_cell(struct ncplane* ***n***, int ***y***, int ***x***, nccell* ***c***);**
364 **ncplane_at_yx** and **ncplane_at_yx_cell** retrieve the contents of the plane
369 **ncplane_at_yx_cell**, however, preserves this information: retrieving a
370 secondary column of a wide glyph with **ncplane_at_yx_cell** will fill in
500 free this result. **ncplane_at_yx_cell** and **ncplane_at_cursor_cell** instead
/dports/devel/notcurses/notcurses-3.0.1/include/ncpp/
H A DPlane.hh1012 return error_guard<int> (ncplane_at_yx_cell (plane, y, x, c), -1); in get_at()
/dports/devel/notcurses/notcurses-3.0.1/
H A DNEWS.md386 wide glyph. `ncplane_at_yx_cell()` continues to duplicate the exact
1149 new functions `ncplane_at_yx_cell()` and `ncplane_at_cursor_cell()`.
H A DUSAGE.md1219 int ncplane_at_yx_cell(struct ncplane* n, int y, int x, nccell* c);
/dports/devel/notcurses/notcurses-3.0.1/include/notcurses/
H A Dnotcurses.h1887 API int ncplane_at_yx_cell(struct ncplane* n, int y, int x, nccell* c);