소스 검색

[texture] image data initialization

pull/12/head
raysan5 10 년 전
부모
커밋
08a4ee34eb
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      src/textures.c

+ 6
- 0
src/textures.c 파일 보기

@ -548,6 +548,12 @@ static ImageEx LoadDDS(const char *fileName)
ImageEx image;
ddsHeader header;
image.data = NULL;
image.width = 0;
image.height = 0;
image.mipmaps = 0;
image.compFormat = 0;
FILE *ddsFile = fopen(fileName, "rb");

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