File: image.h

package info (click to toggle)
mgltools-opengltk 1.5.7-1
  • links: PTS, VCS
  • area: non-free
  • in suites: stretch
  • size: 8,592 kB
  • ctags: 38,393
  • sloc: ansic: 98,617; python: 3,818; cpp: 1,943; sh: 1,332; tcl: 1,127; makefile: 65
file content (14 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* image.h */

#ifndef IMAGE_H
#  define IMAGE_H

typedef struct _TK_RGBImageRec
{
    int     sizeX, sizeY, sizeZ;
    unsigned char *data;
} TK_RGBImageRec;

extern TK_RGBImageRec *tkRGBImageLoad(const char *fileName);

#endif