소스 검색

* Re-add the cx->torender trick to avoid crashing on filters. This really

needs some architecture thinking.
pull/1/head
Sam Hocevar sam 16 년 전
부모
커밋
71ab147f05
2개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -1
      src/figlet.c
  2. +2
    -1
      src/render.c

+ 4
- 1
src/figlet.c 파일 보기

@@ -59,7 +59,10 @@ static int feed_figlet(context_t *cx, uint32_t ch, uint32_t attr)


static int flush_figlet(context_t *cx) static int flush_figlet(context_t *cx)
{ {
return cucul_flush_figlet(cx->cv);
int ret = cucul_flush_figlet(cx->cv);
cx->torender = cx->cv;
cx->cv = cucul_create_canvas(0, 0);
return ret;
} }


static int end_figlet(context_t *cx) static int end_figlet(context_t *cx)


+ 2
- 1
src/render.c 파일 보기

@@ -156,11 +156,12 @@ static int render_flush(context_t *cx)
filter_do(cx); filter_do(cx);


/* Output line */ /* Output line */
buffer = cucul_export_memory(cx->cv, cx->export, &len);
buffer = cucul_export_memory(cx->torender, cx->export, &len);
if(!buffer) if(!buffer)
return -1; return -1;
fwrite(buffer, len, 1, stdout); fwrite(buffer, len, 1, stdout);
free(buffer); free(buffer);
cucul_free_canvas(cx->torender);


return 0; return 0;
} }


불러오는 중...
취소
저장