This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-libzoom/zoom/texture.h

12 lines
160 B
C
Raw Permalink Normal View History

2005-04-22 19:51:02 +00:00
#ifndef ZOOM_TEXTURE_H
#define ZOOM_TEXTURE_H
2005-04-18 15:27:00 +00:00
typedef struct _TEXLIST {
char name[30];
GLuint id;
} TEXLIST;
GLuint LoadTexture(char *);
#endif