aboutsummaryrefslogtreecommitdiff
path: root/Source/TGALoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/TGALoader.h')
-rw-r--r--Source/TGALoader.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Source/TGALoader.h b/Source/TGALoader.h
new file mode 100644
index 0000000..a7b9d9a
--- /dev/null
+++ b/Source/TGALoader.h
@@ -0,0 +1,29 @@
+#pragma once
+
+#ifndef _TGA_LOADER_H_
+#define _TGA_LOADER_H_
+
+
+/**> HEADER FILES <**/
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include "gl.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