summaryrefslogtreecommitdiff
path: root/progs/util/imagesgi.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-05-21 09:32:38 -0700
committerEric Anholt <eric@anholt.net>2010-05-21 12:20:39 -0700
commit68fc4b415e322f6744299e39864fbc377c6eff74 (patch)
tree4bafffd8b0105174f3c5c0ae327a005be9145990 /progs/util/imagesgi.h
parente4f4489e3fc0b36d72821b55794fb843b2b7fa5f (diff)
Remove demos that have moved to git+ssh://git.freedesktop.org/git/mesa/demos.
The remaining programs are ones I've had difficulty finding a build environment for to make the build system or are unit tests that should probably live next to their code instead. Hopefully people can bring over the build for remaining pieces they care about.
Diffstat (limited to 'progs/util/imagesgi.h')
-rw-r--r--progs/util/imagesgi.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/progs/util/imagesgi.h b/progs/util/imagesgi.h
deleted file mode 100644
index e5ecece49d..0000000000
--- a/progs/util/imagesgi.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/******************************************************************************
-** Filename : imageSgi.h
-** UNCLASSIFIED
-**
-** Description : Utility to read SGI image format files. This code was
-** originally a SGI image loading utility provided with the
-** Mesa 3D library @ http://www.mesa3d.org by Brain Paul.
-** This has been extended to read all SGI image formats
-** (e.g. INT, INTA, RGB, RGBA).
-**
-** Revision History:
-** Date Name Description
-** 06/08/99 BRC Initial Release
-**
-******************************************************************************/
-
-#ifndef __IMAGESGI_H
-#define __IMAGESGI_H
-
-#define IMAGE_SGI_TYPE_VERBATIM 0
-#define IMAGE_SGI_TYPE_RLE 1
-
-struct sImageSgiHeader // 512 bytes
-{
- short magic; // IRIS image file magic number (474)
- char type; // Storage format (e.g. RLE or VERBATIM)
- char numBytesPerPixelChannel; // Number of bytes per pixel channel
- unsigned short dim; // Number of dimensions (1 to 3)
- unsigned short xsize; // Width (in pixels)
- unsigned short ysize; // Height (in pixels)
- unsigned short zsize; // Number of channels (1 to 4)
- int minimumPixelValue; // Minimum pixel value (0 to 255)
- int maximumPixelValue; // Maximum pixel value (0 to 255)
- char padding1[4]; // (ignored)
- char imageName[80]; // Image name
- int colormap; // colormap ID (0=normal, 0=dithered,
- // 2=screen, 3=colormap)
- char padding2[404]; // (ignored)
-};
-
-struct sImageSgi
-{
- struct sImageSgiHeader header;
- unsigned char *data;
-};
-
-#ifndef __IMAGESGI_CPP
-
-// RGB image load utility
-extern struct sImageSgi *ImageSgiOpen(char const * const fileName);
-extern void ImageSgiClose(struct sImageSgi *image);
-
-#endif
-
-#endif /* __IMAGESGI_H */