소스 검색

Review code formatting

pull/1490/head
raysan5 4 년 전
부모
커밋
9ed29725a0
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -2
      src/textures.c

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

@ -2348,8 +2348,7 @@ Rectangle GetImageAlphaBorder(Image image, float threshold)
// Clear image background with given color
void ImageClearBackground(Image *dst, Color color)
{
for (int i = 0; i < dst->width * dst->height; ++i)
ImageDrawPixel(dst, i % dst->width, i / dst->height, color);
for (int i = 0; i < dst->width*dst->height; ++i) ImageDrawPixel(dst, i%dst->width, i/dst->height, color);
}
// Draw pixel within an image

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