summary refs log tree commit diff
path: root/src/TGALoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/TGALoader.h')
-rw-r--r--src/TGALoader.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/TGALoader.h b/src/TGALoader.h
deleted file mode 100644
index 8e5bfa0..0000000
--- a/src/TGALoader.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef	_TGA_LOADER_H_
-#define	_TGA_LOADER_H_
-
-/**> HEADER FILES <**/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <GL/gl.h>
-
-#include "Support.h"
-
-/**> DATA STRUCTURES <**/
-typedef struct TGAImageRec
-{
-	GLubyte	*data;		// Image Data (Up To 32 Bits)
-	GLuint	bpp;		// Image Color Depth In Bits Per Pixel.
-	GLuint	sizeX;
-	GLuint	sizeY;
-}	TGAImageRec;
-
-/**> FUNCTION PROTOTYPES <**/
-TGAImageRec*	LoadTGA( char *filename );
-
-#endif