13 lines
220 B
C
13 lines
220 B
C
|
#ifndef __TEXTURESIMPORT
|
||
|
#define __TEXTURESIMPORT
|
||
|
|
||
|
#include <OpenGL/gl.h>
|
||
|
|
||
|
typedef struct{
|
||
|
char url[256];
|
||
|
tFileRef offlineImage;
|
||
|
} tImageURL;
|
||
|
|
||
|
void *TexturesLoadImportBuffer(tFileRef tex,int *xSize,int *ySize);
|
||
|
|
||
|
#endif
|