Ver código fonte

* Got rid of cucul_get_screen(). Use cucul_export() instead.

tags/v0.99.beta14
Sam Hocevar sam 18 anos atrás
pai
commit
c1664e356c
2 arquivos alterados com 0 adições e 19 exclusões
  1. +0
    -18
      cucul/canvas.c
  2. +0
    -1
      cucul/cucul.h

+ 0
- 18
cucul/canvas.c Ver arquivo

@@ -171,24 +171,6 @@ void cucul_printf(cucul_t *qq, int x, int y, char const *format, ...)
free(buf);
}

/** \brief Get the screen.
*
* This function fills a byte array with the character values.
*/
void cucul_get_screen(cucul_t const *qq, char *buffer)
{
unsigned int x, y;

for(y = 0; y < qq->height; y++)
{
for(x = 0; x < qq->width; x++)
{
*buffer++ = qq->attr[x + y * qq->width];
*buffer++ = qq->chars[x + y * qq->width] & 0x7f; /* FIXME: ASCII */
}
}
}

/** \brief Clear the screen.
*
* This function clears the screen using a black background.


+ 0
- 1
cucul/cucul.h Ver arquivo

@@ -82,7 +82,6 @@ char const *cucul_get_color_name(enum cucul_color);
void cucul_putchar(cucul_t *, int, int, char);
void cucul_putstr(cucul_t *, int, int, char const *);
void cucul_printf(cucul_t *, int, int, char const *, ...);
void cucul_get_screen(cucul_t const *, char *);
void cucul_clear(cucul_t *);
void cucul_blit(cucul_t *, int, int, cucul_t const *, cucul_t const *);
/* @} */


Carregando…
Cancelar
Salvar