소스 검색

Replace the old caca texture with a copy of our new logo.

tags/v0.99.beta17
Sam Hocevar sam 15 년 전
부모
커밋
72b669a8b5
2개의 변경된 파일259개의 추가작업 그리고 6개의 파일을 삭제
  1. +1
    -4
      src/cacademo.c
  2. +258
    -2
      src/texture.h

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

@@ -877,7 +877,6 @@ void rotozoom(enum action action, caca_canvas_t *canvas)
static int y_tab[TEXTURE_SIZE];

static caca_dither_t *dither;
static uint32_t *texture;
uint32_t *p;
static int alphaF, tF;
int scaleF;
@@ -897,8 +896,6 @@ void rotozoom(enum action action, caca_canvas_t *canvas)
}
for(x = 0; x < TEXTURE_SIZE; x++)
y_tab[x] = x * TEXTURE_SIZE; /* start of lines offsets */
/* FIXME: this may be an invalid cast */
texture = (uint32_t *)textureByte;
break;

case INIT:
@@ -931,7 +928,7 @@ void rotozoom(enum action action, caca_canvas_t *canvas)
vu &= 0xFF; /* ARM doesn't like */
vv &= 0xFF; /* chars as local vars */

*p++ = texture[vu + y_tab[vv]];
*p++ = texture256x256[vu + y_tab[vv]];
}

uF = uF_ -= yyF;


+ 258
- 2
src/texture.h
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


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