mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-20 03:25:47 +00:00
ncdirect_render_image: return NCERR_UNIMPLEMENTED #725
This commit is contained in:
parent
2c19987f97
commit
97a996927f
2
NEWS.md
2
NEWS.md
@ -4,8 +4,6 @@ rearrangements of Notcurses.
|
||||
* 1.5.2 (not yet released)
|
||||
* The `ncneofetch` program has been added, of no great consequence.
|
||||
* A `NULL` value can now be passed as `sbytes` to `ncplane_puttext()`.
|
||||
* `ncdirect_render_image()` has been added, allowing images to be
|
||||
rendered in direct mode.
|
||||
* `ncvisual_geom()` now takes scaling into account.
|
||||
* `notcurses_cantruecolor()` has been added, allowing clients to
|
||||
determine whether the full RGB space is available to us. If not,
|
||||
|
@ -216,9 +216,12 @@ nc_err_e ncdirect_render_image(ncdirect* n, const char* file, ncblitter_e blitte
|
||||
if(ncv == NULL){
|
||||
return ret;
|
||||
}
|
||||
(void)blitter;
|
||||
(void)scale;
|
||||
(void)n;
|
||||
// FIXME
|
||||
ncvisual_destroy(ncv);
|
||||
return NCERR_SUCCESS;
|
||||
return NCERR_UNIMPLEMENTED; // FIXME
|
||||
}
|
||||
|
||||
int ncdirect_stop(ncdirect* nc){
|
||||
|
Loading…
Reference in New Issue
Block a user