repo.or.cz
/
AROS-Contrib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make sure "S" is generated.
[AROS-Contrib.git]
/
vpdf
/
system
/
loadpng.h
blob
2798c775a944097dffaab0f598065fa46ba510d4
1
#ifndef LOADPNG_H
2
#define LOADPNG_H
3
4
#include
"chunky.h"
5
6
Texture
*
PNGLoadARGB32
(
char
*
fname
);
7
Texture
*
PNGLoadRGB24
(
char
*
fname
);
8
int
pngGetDimmensions
(
char
*
fname
,
int
*
width
,
int
*
height
);
9
10
#endif