Initial commit.

This commit is contained in:
Jim Gray
2013-04-04 14:32:05 -07:00
parent ba5c81da32
commit d71d53e8ec
2180 changed files with 1393544 additions and 1 deletions

18
tools/ModView/r_image.h Normal file
View File

@@ -0,0 +1,18 @@
// Filename:- R_Image.h
//
#ifndef R_IMAGE_H
#define R_IMAGE_H
extern char g_sImageExtension[MAX_QPATH];
//image_t *R_FindImageFile( const char *name );
void R_LoadImage( const char *name, byte **pic, int *width, int *height );
// externalised for DMark code...
//
bool TGA_Write(LPCSTR psFullPathedFilename, byte *pPixels, int iWidth, int iHeight, int iPlanes);
void LoadTGA ( const char *name, byte **pic, int *width, int *height);
#endif