13 if (t->
handle == h)
return t;
19static void free_texture(
GLContext *c,
int h)
98 t=find_texture(c,textures[i]);
99 if (t!=NULL && t!=0) {
103 free_texture(c,textures[i]);
117 t=find_texture(c,texture);
128 int components=p[3].
i;
136 unsigned char *pixels1;
139 if (!(target ==
GL_TEXTURE_2D && level == 0 && components == 3 &&
140 border == 0 && format ==
GL_RGB &&
142 gl_fatal_error(
"glTexImage2D: combinaison of parameters not handled");
146 if (width != 256 || height != 256) {
161#if TGL_FEATURE_RENDER_BITS == 24
164 memcpy(im->
pixmap,pixels1,width*height*3);
166#elif TGL_FEATURE_RENDER_BITS == 32
171#elif TGL_FEATURE_RENDER_BITS == 16
void gl_fatal_error(char *format,...)
void glBindTexture(int target, int texture)
void gl_convertRGB_to_8A8R8G8B(unsigned int *pixmap, unsigned char *rgb, int xsize, int ysize)
void gl_convertRGB_to_5R6G5B(unsigned short *pixmap, unsigned char *rgb, int xsize, int ysize)
void gl_resizeImageNoInterpolate(unsigned char *dest, int xsize_dest, int ysize_dest, unsigned char *src, int xsize_src, int ysize_src)
GLContext * gl_get_context(void)
void * gl_zalloc(int size)
void * gl_malloc(int size)
GLSharedState shared_state
GLTexture * current_texture
GLTexture ** texture_hash_table
GLImage images[MAX_TEXTURE_LEVELS]
void glopTexParameter(GLContext *c, GLParam *p)
void glInitTextures(GLContext *c)
void glopBindTexture(GLContext *c, GLParam *p)
void glDeleteTextures(int n, const unsigned int *textures)
void glopTexEnv(GLContext *c, GLParam *p)
GLTexture * alloc_texture(GLContext *c, int h)
void glopPixelStore(GLContext *c, GLParam *p)
void glGenTextures(int n, unsigned int *textures)
void glopTexImage2D(GLContext *c, GLParam *p)
#define MAX_TEXTURE_LEVELS
#define TEXTURE_HASH_TABLE_SIZE