]> granicus.if.org Git - graphviz/commitdiff
regex code was isolated in a new dir
authorarif <devnull@localhost>
Tue, 24 Mar 2009 15:16:10 +0000 (15:16 +0000)
committerarif <devnull@localhost>
Tue, 24 Mar 2009 15:16:10 +0000 (15:16 +0000)
lib/glcomp/glcomptextpng.c

index 49e71f12b151e3a77323e57e5fb6dc579a791151..6d0833ea15628773b2b7770ac5908779616597d0 100644 (file)
@@ -15,7 +15,6 @@
 #include <png.h>
 
 
-GLenum texFormat;
 
 unsigned char *load_png_font(char* file_name,int *imageWidth,int *imageHeight)
 {
@@ -78,7 +77,6 @@ unsigned char *load_png_font(char* file_name,int *imageWidth,int *imageHeight)
    row_pointers = png_get_rows(png_ptr, info_ptr);
        *imageWidth=info_ptr->width;
        *imageHeight=info_ptr->height;
-       texFormat = GL_ALPHA;   //it is always GL_ALPHA, we dont need textures have their own colors
        imageData=malloc(info_ptr->height*info_ptr->width);
        c=0;
        //decide what pixel offset to use, ro
@@ -167,7 +165,7 @@ int glCompLoadFontPNG (char *name, int id)
        glTexEnvf (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
 //     glTexEnvf(GL_TEXTURE_ENV,GL_TEXTURE_ENV_MODE , GL_DECAL);
 
-       glTexImage2D (GL_TEXTURE_2D, 0, texFormat, imageWidth, imageHeight, 0, texFormat, GL_UNSIGNED_BYTE, imageData);
+       glTexImage2D (GL_TEXTURE_2D, 0, GL_ALPHA, imageWidth, imageHeight, 0, GL_ALPHA, GL_UNSIGNED_BYTE, imageData);
 //     glTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA, 256, 256, 0, GL_RGBA, GL_UNSIGNED_BYTE, imageData);
 
        /* release data, its been uploaded */