aboutsummaryrefslogtreecommitdiff
path: root/Source/TGALoader.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-17 14:20:54 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-17 14:22:53 +0700
commit602a0c5951050e7cce645534cb4f136cf9f4fee4 (patch)
treee70e63b0b0058830e58c244ad917bc892c10418f /Source/TGALoader.h
parent094e12df1ebb81d304803be4b274546384ec117c (diff)
downloadblackshades-602a0c5951050e7cce645534cb4f136cf9f4fee4.tar.gz
Rename source and build directory1.1.1
Diffstat (limited to 'Source/TGALoader.h')
-rw-r--r--Source/TGALoader.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/Source/TGALoader.h b/Source/TGALoader.h
deleted file mode 100644
index 2e711e5..0000000
--- a/Source/TGALoader.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifdef OS9
-#pragma once
-#endif
-
-#ifndef _TGA_LOADER_H_
-#define _TGA_LOADER_H_
-
-
-/**> HEADER FILES <**/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#ifdef OS9
-#include "gl.h"
-#else
-#include <GL/gl.h>
-#endif
-
-/**> 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