AminetAminet
Search:
84782 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/c/Mesa2_2ASrc1_6.lha

Mirror:Random
Showing: ppc-morphos icongeneric icon
No screenshot available
Short:3D library, OpenGL based, Amiga v1.6
Author: brianp at ssec.wisc.edu (BrianP) d94sz at efd.lth.se (Stefan Zivkovic)
Uploader:d94sz efd lth se (Stefan Zivkovic)
Type:dev/c
Version:Mesa v2.0 Amiga version 1.6
Architecture:m68k-amigaos
Date:1997-06-27
Requires:System v39, SAS 6.57 or GCC.
Replaces:dev/c/Mesa-2.0_Amiga-1.5.lha
Download:dev/c/Mesa2_2ASrc1_6.lha - View contents
Readme:dev/c/Mesa2_2ASrc1_6.readme
Downloads:804

				The Mesa 3-D graphics library

			 Copyright (C) 1995-1996  Brian Paul



Introduction
============

Mesa is a 3-D graphics library with an API which is very similar to that
of OpenGL*.  To the extent that Mesa utilizes the OpenGL command syntax
or state machine, it is being used with authorization from Silicon Graphics,
Inc.	However, the author makes no claim that Mesa is in any way a
compatible replacement for OpenGL or associated with Silicon Graphics, Inc.
Those who want a licensed implementation of OpenGL should contact a licensed
vendor.	This software is distributed under the terms of the GNU Library
General Public License, see the LICENSE file for details.

* OpenGL(R) is a registered trademark of Silicon Graphics, Inc.

Miscellaneous
=============

There is a Amiga Mesa WWW page:	http://www.efd.lth.se/~d94sz/amesa
and the orginal  Mesa WWW page:	http://www.ssec.wisc.edu/~brianp/Mesa.html


Since the OpenGL API is used, OpenGL documentation can serve as the
documentation for Mesa's core functions.  Here are a few sources:

  Man pages:	 http://www.digital.com:80/pub/doc/opengl/
  Spec doc: 	 http://www.sgi.com/Technology/openGL/glspec/glspec.html


Author
======

Brian Paul
Space Science and Engineering Center
University of Wisconsin - Madison
1225 W. Dayton St.
Madison, WI  53706

brianp@ssec.wisc.edu


AMIGA PORT of MESA: THE OPENGL SOFTWARE EMULATION by Stefan Zivkovic
====================================================================
When I first read about OPENGL in the summer of 1995 I was happy and filled with
joy. A few days later I surfed to the mesa homepage but only to discover that 
there was no Amiga version. In the beginning of 1996 someone released a AMIWIN
version so I took the archive home to try it out, but it stayed packed on my HD.
One day when I was home and playing around with my HD I saw the archive and
started to try to make it work. Without luck as it seemed that you needed 
the AMIWIN Includes and LIBFILES. But I also discovered that it was possible
to port it with not to much effort (WRONG THERE) so I begun.

For the Amiga there is only three important files + one directory.

src/Amigamesa.c		The mesa GL Amiga implementation 
			(ddsample.c with some Amiga code)
src-tk/Awindow.c	The tk (and aux) machine specific code)
include/GL/Amigamesa.h	The prototypes for Amigamesa

Amiga/#?

Installing
==========
If you have the big archive you just have to unpack is where you want it.
If you have the updatepackage you need the orginal mesa archive and then
you will nead lha in your path and run the installer script in /amiga 
(or just unpack AMesa.lha yourself)


Compiling
=========
If you use SAS just execute mklib.amiga (will appear if you have installed it correctly)
For compiling with gcc you have to enter the command "make amiga-gcc". Via the 
environment variable LOCALFLAGS you can specify additional optimizations (for instance -m68040).

To use CyberGfx you have to define ADISP_CYBERGFX in include/gl/amigamesa.h
(you nead the includes for it (ftp.phase5.de))

About the code.
===============
The Code is compiled with cpu=020 math=ieee 
If you would like it different then use the /Amiga/scoptions read next statement
The code is by defult amiga standard graphics If you for some unknown don't want
this there is a define in top of  include/gl/amigamesa.h

The common scoptions file is in /Amiga
Here exists a scoption that is used in the WHOLE package, change math here
and it will reflect in all dirs

In /Amiga/library there are previews of files to the shared-library version
(This doesn't work yet but should give you an idea of how to use it)

In /Amiga/Examples there should be some amiga-demo code,
but I've got no code yet so feel free to send me your own examples.

All tk actions in tkExec are not finished. But most of them is. (low priority)

Most of the examples work. (ALL?)

etc. etc.

Write your own OpenGL code
==========================
1. For a easy start, look at the examples in /book/ and modify them
   The examples uses a portable layer toolkit Not amiga specific at all

Until The shared library is ready you have to define AMIGALIB when
using <GL/gl.h>

2. For a better amigaprogram just open a window (on your favourite screen) and
	add a few lines in your source:

-----------------------------------------------------------------------------
/* ADD where you want it  */
#include <GL/gl.h>

Init()		 /* sets up viewport and projections */
  {
  glMatrixMode (GL_PROJECTION);	  /*	prepare for and then */ 
  glLoadIdentity (); 		/*  define the projection */
  glFrustum (-1.0, 1.0, -1.0, 1.0, 1.5, 20.0);/*  transformation */
  glMatrixMode (GL_MODELVIEW);	/*  back to modelview matrix*/
  glViewport (0, 0, 200, 200);	/*  define the viewport 	*/
}	 /*		  ^  ^  ^^^  ^^^--- The size of the mesa/openGL window  */
	


/* ADD In after you opened your window */

struct amigamesa_context *glcont;

	glcont=AmigaMesaCreateContextTags( 
						AMA_DrawMode,AMESA_AGA,
						AMA_Window,(unsigned long)		test_window,    // My Windowptr
						AMA_RastPort,(unsigned long)	test_window->RPort,
						AMA_Screen,(unsigned long)		test_window->WScreen,
						AMA_DoubleBuf,						GL_FALSE, // or GL_TRUE
						AMA_RGBMode,						GL_TRUE, //   -"-
						AMA_Left,							test_window->BorderLeft,  		// offset from left edgr
						AMA_Bottom,							test_window->BorderBottom+1,	// offset from bottom edgr
						TAG_DONE,0);

// Neaded tags is   AMA_RastPort,AMA_Screen   if you supply AMA_Window
// it looks for RastPort and Screen in it so a Window_ptr will do.

if (glcont)
 {
 AmigaMesaMakeCurrent(glcont,glcont->buffer);
 /* All your gl comands */
 /*handle_window_events(test_window);	or whatever */
 AmigaMesaDestroyContext(glcont);
}

/* Don't forget to call glViewport() when you resize the window */
------------------------------------------------------------------------------
if you set doublebuff to GL_TRUE then you just switch buffer with
AmigaMesaSwapBuffers(glcont);

For more info on the internal of the Amiga port you can check the files
  src/Amigamesa.c and include/GL/Amigamesa.h for tk check src-tk/Awindow.c
And info on how to write your own gfx-routines read include/GL/amigamesa.h for
more instructions.

THINGS THAT MAY GO WRONG
========================
Remember GL ALWAYS render with (0,0) in the BOTTOM left corner.

If you use SAS you have to use the latest version (v 6.57), there is some bugs
 in the older version's you can get free upgrades on aminet.


WARNING The api has changed on AmigaMesaCreateContext() it is now called with
	a taglist. Read /include/GL/amigamesa.h

Scoptions that should not be changed is  Precision=MIXED, NoStackExtend, NoStackCheck.

It compiles but all examples crash everytime: 
	Set your stack high about 50kb or more.

Linking complains about not finding _glBegin(): or @glBegin():
	You have compiled some code using the stack and some using registers as
	parameter passing, You have to chose one of them and us it on both places.

The colors are really bad:
	To emulate 24bit I alloc 255 colors in the beginning spread over the
	palette and then use it. If you'd like better colors, buy a GFX-Card.
	(And wait for gfx-card versions.)

Resizing is sometimes very very unhealthy.

Please keep in mind that since SAS pre 6.57 contains a few bugs thats could give you 
problem please use the latest version of SAS (Aminet contains a uppgrade). 
I have many users that repordet problems that disapered when thay upgaded SAS to 6.57


LATEST VERSION:
===============
http://www.efd.lth.se/~d94sz/amesa

TODO:
=====
Debugg.
Fix resizing bug.


FUTURE:
=======
A shared library would be nice. (I have started)
Faster and better. (You may have some nice idea?)

HISTORY:
========
		
Release:
0.8 This code worked with Mesa 1.2.6 and all makefiles also.
	 But when I released it, Mesa 1.2.7 was released and some changes were made.
	 It didn't work.

0.9 Makefiles is remapped to work with Mesa 1.2.7.
	 Double buffering works.
	 Implemented fast_poly_draw (big speed improvement).
	 tkExec a few more tests were done. (right & middle mousebutton is not
	 implemented)

1.0 I've put a common scoption file in /Amiga (thanks to Kamil Iskra).
	 Due to the common scoptions you can change CPU and math more easy ,and
	 compiler options set to default math=ieee, cpu=020 so that it works on 
	 1200's and up 
	 Many bugfixes (thanks to Daniel Jönsson).
	 Have fixed the smakefile name collision with AMIWIN version.
	 Mesa 1.2.8 Fixed.
	 Spellcorrection of the docs were made by Peter Sandén.
	 (Blame him, not me!) 
	 All tk's windows are opened on a pubscreen named "MESA" if it exists.

1.1 Faster and more stable (Many thanks to Jorge Acereda (JAM))
	 Faster pen usage now it allocates 255 pens and use them (thanks to
	 Stefan Burström)
	 A few enhancements here and there.
	 Fixed a smake bug ignore=A only works in the latest SAS version. Now I
	 have changed it to IGN=ALL (Thanx to everyone who reported this one)

1.2 Removed math from smakefiles, SAS handles this better self. (Kamil Iskra)
	 Fixed a serious drawing bug (appeared when using GL_SMOTH).
    Fixed a very flexible programming API for future gfx-board implementations
	 Added a BOOL AmigaMesaSetDefs(struct TagItem *tagList); usefull for future enhancements
    ***'API change: AmigaMesaCreateContext uses taglist se include/GL/amigamesa.h
    Faster on doublebuffer rendering. (Now I convert whole double buffer c2p)
    Easier to integrate future gfx-cards routines. Look in include/GL/amigamesa.h
    tk toolkit fixed to work better. Thanks to Georg 'Wulf' Krämer

1.4 Uppdated to reflect Mesa 2.0
	 Small Bugfixes. Relesed With Mesa 2.0

1.5 A few bugs intruduced in 1.4 was fixed (a workaround SAS oml/slink bug)
    Due to a bug in SAS (oml/slink) 1.4 didn't work, this version should work better.
    
1.6 I haved splitted amigamesa into amigamesa and ADisp_AGA.c
    this ensures higer modularity, and becomes easier to se what is neaded to port
    if you want to make your own gfx rutines.
    ADisp_Cyb.c contains CyberGFX drawer rutines (Joerg Nilson)
    It's also posible to use gcc now. (Joerg Nilson)
    Now works with mesa 2.2.


Due to my lack of time this will be my last relese of mesa, If you are interested to take over and mainten the source
please feel free to do so, Just please let me know so I can put some info on my webpage.



Please contact me with suggestions and additional info. 
You can reach me at: 

d94sz@efd.lth.se

Or mail:

Stefan Zivkovic
Kämnärsv. 9L:225
226 46 LUND

Or Phone:
+46 46 150763


Contents of dev/c/Mesa2_2ASrc1_6.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO     CRC       STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                  170     293  58.0% -lh5- 791b Nov 14  1996 Mesa-2.2/descrip.mms
[generic]                  240     427  56.2% -lh5- d8bf Feb  3  1997 Mesa-2.2/IAFA-PACKAGE
[generic]                  117     161  72.7% -lh5- a5f4 Jun 13  1996 Mesa-2.2/Imakefile
[generic]                 9285   25267  36.7% -lh5- 1b7d Dec 19  1994 Mesa-2.2/LICENSE
[generic]                 4179   21870  19.1% -lh5- 0f4c Jun 25  1997 Mesa-2.2/Make-config
[generic]                 2908   10705  27.2% -lh5- da6f Jun 25  1997 Mesa-2.2/Makefile
[generic]                  203     523  38.8% -lh5- 6109 Jun 25  1997 Mesa-2.2/mklib.amiga
[generic]                  191     270  70.7% -lh5- 8472 Oct 16  1996 Mesa-2.2/mms-config
[generic]                14129   35495  39.8% -lh5- 271e Mar 14  1997 Mesa-2.2/README
[generic]                  383     645  59.4% -lh5- 83d7 Mar 14  1997 Mesa-2.2/README.3DFX
[generic]                 5104   10871  47.0% -lh5- 1b18 Jun 25  1997 Mesa-2.2/README.AMIGA
[generic]                 2693    7075  38.1% -lh5- c1d9 Dec  6  1995 Mesa-2.2/README.AMIWIN
[generic]                 1218    3083  39.5% -lh5- 536e Feb  3  1997 Mesa-2.2/README.BEOS
[generic]                 1998    4665  42.8% -lh5- 6b69 Mar 23  1997 Mesa-2.2/README.DOS
[generic]                 1108    2137  51.8% -lh5- 9d51 Aug 27  1996 Mesa-2.2/README.GLUT
[generic]                  178     250  71.2% -lh5- df66 Aug 13  1996 Mesa-2.2/README.OS2
[generic]                  405     660  61.4% -lh5- f39f Oct 16  1996 Mesa-2.2/README.VMS
[generic]                 5667   13861  40.9% -lh5- 558d Mar 14  1997 Mesa-2.2/VERSIONS
[generic]                   35      35 100.0% -lh0- 6bb3 Dec 18  1996 Mesa-2.2/xlib.opt
[generic]                 2590    8028  32.3% -lh5- dbd2 Feb  3  1997 Mesa-2.2/include/glaux.h
[generic]                  114     147  77.6% -lh5- 32c7 Jan  7  1997 Mesa-2.2/MESADJ.BAT
[generic]                  428    1038  41.2% -lh5- c26f Mar 23  1997 Mesa-2.2/MESADOS.BAT
[generic]                 1461    3237  45.1% -lh5- 11f4 Jan  7  1997 Mesa-2.2/mklib.aix
[generic]                  210     555  37.8% -lh5- 83b4 Jan  7  1997 Mesa-2.2/mklib.amiwin
[generic]                  288     444  64.9% -lh5- 6d98 Jan  7  1997 Mesa-2.2/mklib.freebsd
[generic]                  375     611  61.4% -lh5- d9ea Jan  7  1997 Mesa-2.2/mklib.hpux
[generic]                  551     923  59.7% -lh5- 3383 Jan  7  1997 Mesa-2.2/mklib.irix5
[generic]                  549     914  60.1% -lh5- 202e Jan  7  1997 Mesa-2.2/mklib.irix6-32
[generic]                  551     916  60.2% -lh5- 9f38 Jan  7  1997 Mesa-2.2/mklib.irix6-64
[generic]                  549     917  59.9% -lh5- d8b5 Jan  7  1997 Mesa-2.2/mklib.irix6-n32
[generic]                  555    1004  55.3% -lh5- e2c1 Jan  7  1997 Mesa-2.2/mklib.linux
[generic]                  294     523  56.2% -lh5- 6284 Jan  7  1997 Mesa-2.2/mklib.netbsd
[generic]                  302     585  51.6% -lh5- b9bf Jan  7  1997 Mesa-2.2/mklib.openbsd
[generic]                  359     657  54.6% -lh5- e92a Mar  8  1997 Mesa-2.2/mklib.osf1
[generic]                  297     557  53.3% -lh5- 9c4d Jan  7  1997 Mesa-2.2/mklib.solaris
[generic]                 2489    5694  43.7% -lh5- 0ecb Mar 23  1997 Mesa-2.2/STARTUP.MK
[generic]                 1243    2807  44.3% -lh5- 9fb6 Jan  6  1996 Mesa-2.2/include/GL/dosmesa.h
[generic]                  900    2099  42.9% -lh5- 2e44 Feb  3  1997 Mesa-2.2/include/GL/FooMesa.h
[generic]                10653   48822  21.8% -lh5- c6c1 Mar 11  1997 Mesa-2.2/include/GL/gl.h
[generic]                 3132   13786  22.7% -lh5- 6c13 Feb 17  1997 Mesa-2.2/include/GL/gl_mangle.h
[generic]                 3338   11060  30.2% -lh5- d5ce Feb 19  1997 Mesa-2.2/include/GL/glu.h
[generic]                  981    2717  36.1% -lh5- 4cce Feb  3  1997 Mesa-2.2/include/GL/glu_mangle.h
[generic]                 2037    5542  36.8% -lh5- 348f Feb  3  1997 Mesa-2.2/include/GL/glx.h
[generic]                  803    1939  41.4% -lh5- c73e Feb  3  1997 Mesa-2.2/include/GL/glx_mangle.h
[generic]                 1336    3068  43.5% -lh5- 4584 Feb 19  1997 Mesa-2.2/include/GL/gmesa.h
[generic]                 2632    6816  38.6% -lh5- 4e95 Feb 19  1997 Mesa-2.2/include/GL/osmesa.h
[generic]                 1205    2602  46.3% -lh5- 0b12 Oct 30  1996 Mesa-2.2/include/GL/svgamesa.h
[generic]                 1297    2799  46.3% -lh5- adb4 Feb 22  1997 Mesa-2.2/include/GL/wmesa.h
[generic]                 2230    6583  33.9% -lh5- 24a4 Feb  3  1997 Mesa-2.2/include/gltk.h
[generic]                 4227   11907  35.5% -lh5- c878 Jun 25  1997 Mesa-2.2/include/GL/Amigamesa.h
[generic]                 2243    6478  34.6% -lh5- a89b Oct 30  1996 Mesa-2.2/include/GL/xmesa.h
[generic]                  325     917  35.4% -lh5- b2d7 May  5  1996 Mesa-2.2/include/mondello/clgd5470.h
[generic]                  394    1112  35.4% -lh5- 181f May  6  1996 Mesa-2.2/include/mondello/clgd5471.h
[generic]                  294     627  46.9% -lh5- ca20 May  6  1996 Mesa-2.2/include/mondello/clgd5472.h
[generic]                  891    2227  40.0% -lh5- 4ab3 May  6  1996 Mesa-2.2/include/mondello/clgd547x.h
[generic]                 1142    2393  47.7% -lh5- d3c8 May  6  1996 Mesa-2.2/include/mondello/cmesa.h
[generic]                 1502    6800  22.1% -lh5- 8f5b May  5  1996 Mesa-2.2/include/mondello/compiler.h
[generic]                 5364   27511  19.5% -lh5- bf55 May  6  1996 Mesa-2.2/include/mondello/davinci.h
[generic]                  839    3891  21.6% -lh5- 6d0b May  6  1996 Mesa-2.2/include/mondello/graphics.h
[generic]                  105     114  92.1% -lh5- 4861 May  6  1996 Mesa-2.2/include/mondello/lut.h
[generic]                   99     157  63.1% -lh5- fb96 May  5  1996 Mesa-2.2/include/mondello/misc.h
[generic]                  528    1940  27.2% -lh5- 359c May  6  1996 Mesa-2.2/include/mondello/type.h
[generic]                  340     541  62.8% -lh5- 7a11 Oct 16  1996 Mesa-2.2/src-tk/descrip.mms
[generic]                  317     596  53.2% -lh5- b69d May 30  1996 Mesa-2.2/src-tk/Imakefile
[generic]                 1099    2167  50.7% -lh5- 836d Jun 25  1997 Mesa-2.2/src-tk/Makefile
[generic]                  789    1449  54.5% -lh5- aec9 Feb  3  1997 Mesa-2.2/src-tk/Makefile.BeOS
[generic]                  716    1297  55.2% -lh5- 3c06 Jan  6  1997 Mesa-2.2/src-tk/MAKEFILE.DJ
[generic]                  751    1400  53.6% -lh5- 5b08 Jan  7  1997 Mesa-2.2/src-tk/MAKEFILE.DOS
[generic]                  857    1505  56.9% -lh5- fd4e May 14  1996 Mesa-2.2/src-tk/Makefile.NeXT
[generic]                 1027    1991  51.6% -lh5- 57b3 Nov 24  1996 Mesa-2.2/src-tk/Makefile.OpenStep
[generic]                  545    1502  36.3% -lh5- 9f3a May 17  1996 Mesa-2.2/src-tk/mesatkos2.def
[generic]                   87     118  73.7% -lh5- 38e6 May 17  1996 Mesa-2.2/src-tk/MesaTkos2.rsp
[generic]                 3263   10663  30.6% -lh5- 6339 Jan 29  1997 Mesa-2.2/src-tk/README
[generic]                 3843    9058  42.4% -lh5- 6572 Apr 28  1995 Mesa-2.2/src-glu/README1
[generic]                 5970   18161  32.9% -lh5- 4a12 Jun 25  1997 Mesa-2.2/src-tk/Awindow.c
[generic]                  635    2062  30.8% -lh5- 3d9a May 22  1996 Mesa-2.2/src-tk/cursor.c
[generic]                 1864    8835  21.1% -lh5- 0e8e Feb 13  1997 Mesa-2.2/src-tk/event.c
[generic]                45737  273995  16.7% -lh5- ed12 Apr 23  1996 Mesa-2.2/src-tk/font.c
[generic]                 1642    8661  19.0% -lh5- e65b Feb 13  1997 Mesa-2.2/src-tk/getset.c
[generic]                 1392    4851  28.7% -lh5- 1a02 Apr 23  1996 Mesa-2.2/src-tk/image.c
[generic]                  437     997  43.8% -lh5- 0565 Apr 16  1996 Mesa-2.2/src-tk/private.h
[generic]                    0       0 ****** -lh0- 0000 Jun 25  1997 Mesa-2.2/src-tk/SCOPTIONS
[generic]                 1424   12406  11.5% -lh5- c015 Apr 23  1996 Mesa-2.2/src-tk/shapes.c
[generic]                 1230    2665  46.2% -lh5- d40a Jun 25  1997 Mesa-2.2/src-tk/Smakefile
[generic]                 4680   15520  30.2% -lh5- 9b93 Feb  3  1997 Mesa-2.2/src-tk/tkbeos.cpp
[generic]                 9086   33048  27.5% -lh5- 872e Jan  7  1997 Mesa-2.2/src-tk/tkdos.c
[generic]                 8451   28996  29.1% -lh5- 15ea Nov 24  1996 Mesa-2.2/src-tk/tkwndws.c
[generic]                 3601   19383  18.6% -lh5- 5d0f Feb 13  1997 Mesa-2.2/src-tk/window.c
[generic]                  160     732  21.9% -lh5- d65c Feb 17  1997 Mesa-2.2/src-glu/depend
[generic]                  417     736  56.7% -lh5- 16a6 Oct 16  1996 Mesa-2.2/src-glu/descrip.mms
[generic]                  348     725  48.0% -lh5- a733 May 30  1996 Mesa-2.2/src-glu/Imakefile
[generic]                  922    1690  54.6% -lh5- d723 Sep 27  1996 Mesa-2.2/src-glu/Makefile
[generic]                  903    1641  55.0% -lh5- 5f68 Feb  3  1997 Mesa-2.2/src-glu/Makefile.BeOS
[generic]                  893    1664  53.7% -lh5- e4a9 Jan  6  1997 Mesa-2.2/src-glu/MAKEFILE.DJ
[generic]                  893    1670  53.5% -lh5- fc66 Jan  7  1997 Mesa-2.2/src-glu/MAKEFILE.DOS
[generic]                  863    1578  54.7% -lh5- 12d9 Oct 22  1996 Mesa-2.2/src-glu/Makefile.NeXT
[generic]                  922    1690  54.6% -lh5- d723 Nov 30  1996 Mesa-2.2/src-glu/Makefile.OpenStep
[generic]                  549    1537  35.7% -lh5- 7f46 Apr 24  1996 Mesa-2.2/src-glu/MesaGLUos2.def
[generic]                  104     180  57.8% -lh5- cb8a Apr 24  1996 Mesa-2.2/src-glu/MesaGLUos2.rsp
[generic]                  165     765  21.6% -lh5- 7ec2 Oct 16  1996 Mesa-2.2/src-glu/mms_depend
[generic]                  762    1500  50.8% -lh5- 5cff Feb 20  1996 Mesa-2.2/src-glu/README2
[generic]                 2714    7628  35.6% -lh5- 77e4 Mar 11  1997 Mesa-2.2/src-glu/glu.c
[generic]                  820    1593  51.5% -lh5- f93c Sep 27  1996 Mesa-2.2/src-glu/gluP.h
[generic]                 4247   16830  25.2% -lh5- e618 Sep 27  1996 Mesa-2.2/src-glu/mipmap.c
[generic]                 3694   15792  23.4% -lh5- b508 Sep 27  1996 Mesa-2.2/src-glu/nurbs.c
[generic]                 1808    5282  34.2% -lh5- 029f Sep 27  1996 Mesa-2.2/src-glu/nurbs.h
[generic]                 3095   12735  24.3% -lh5- 3a79 Sep 27  1996 Mesa-2.2/src-glu/nurbscrv.c
[generic]                 6346   37132  17.1% -lh5- 384b Sep 27  1996 Mesa-2.2/src-glu/nurbssrf.c
[generic]                 5465   23677  23.1% -lh5- 4c6c Sep 27  1996 Mesa-2.2/src-glu/nurbsutl.c
[generic]                 6530   26481  24.7% -lh5- 1edd Sep 27  1996 Mesa-2.2/src-glu/polytest.c
[generic]                 3176   10474  30.3% -lh5- 062e Jan 29  1997 Mesa-2.2/src-glu/project.c
[generic]                 4461   18896  23.6% -lh5- 205e Mar 12  1997 Mesa-2.2/src-glu/quadric.c
[generic]                 2205    7694  28.7% -lh5- 8572 Nov 12  1996 Mesa-2.2/src-glu/tess.c
[generic]                 1025    2278  45.0% -lh5- 243c Feb 17  1997 Mesa-2.2/src-glu/tess.h
[generic]                 2092    9768  21.4% -lh5- 9ef6 Feb 17  1997 Mesa-2.2/src-glu/tesselat.c
[generic]                  263    1176  22.4% -lh5- 78f4 Dec 19  1994 Mesa-2.2/src-aux/3d.h
[generic]                  352     552  63.8% -lh5- 00df Oct 16  1996 Mesa-2.2/src-aux/descrip.mms
[generic]                  322     598  53.8% -lh5- 048e May 30  1996 Mesa-2.2/src-aux/Imakefile
[generic]                  747    1327  56.3% -lh5- 3cc8 Sep 14  1996 Mesa-2.2/src-aux/Makefile
[generic]                  796    1407  56.6% -lh5- abd5 Feb  3  1997 Mesa-2.2/src-aux/Makefile.BeOS
[generic]                  750    1337  56.1% -lh5- 0ee5 Jan  6  1997 Mesa-2.2/src-aux/MAKEFILE.DJ
[generic]                  781    1438  54.3% -lh5- 996c Jan  7  1997 Mesa-2.2/src-aux/MAKEFILE.DOS
[generic]                  793    1402  56.6% -lh5- 75ff Dec  2  1996 Mesa-2.2/src-aux/Makefile.NeXT
[generic]                  747    1327  56.3% -lh5- 3cc8 Nov 30  1996 Mesa-2.2/src-aux/Makefile.OpenStep
[generic]                  593    1838  32.3% -lh5- 27a0 Apr 24  1996 Mesa-2.2/src-aux/Mesaauxos2.def
[generic]                   86     117  73.5% -lh5- 6fac Apr 24  1996 Mesa-2.2/src-aux/Mesaauxos2.rsp
[generic]                    0       0 ****** -lh0- 0000 Jun 25  1997 Mesa-2.2/src-glu/SCOPTIONS
[generic]                 1230    2615  47.0% -lh5- a0cb Jun 25  1997 Mesa-2.2/src-glu/Smakefile
[generic]                  263     425  61.9% -lh5- 1b5a Mar  5  1996 Mesa-2.2/src-aux/font.c
[generic]                 2388    9933  24.0% -lh5- cd14 Feb  3  1997 Mesa-2.2/src-aux/glaux.c
[generic]                  143     226  63.3% -lh5- 68c6 Mar  5  1996 Mesa-2.2/src-aux/image.c
[generic]                    0       0 ****** -lh0- 0000 Jun 25  1997 Mesa-2.2/src-aux/SCOPTIONS
[generic]                 5155   27796  18.5% -lh5- c1dc Apr 25  1996 Mesa-2.2/src-aux/shapes.c
[generic]                 1207    2524  47.8% -lh5- 80c7 Jun 25  1997 Mesa-2.2/src-aux/Smakefile
[generic]                 1782    6711  26.6% -lh5- 5d8d Mar  5  1996 Mesa-2.2/src-aux/teapot.c
[generic]                 1078    3046  35.4% -lh5- f493 Mar  5  1996 Mesa-2.2/src-aux/vect3d.c
[generic]                  647    2335  27.7% -lh5- f8a4 Mar  5  1996 Mesa-2.2/src-aux/xxform.c
[generic]                  764    1618  47.2% -lh5- 1d1c Nov 24  1996 Mesa-2.2/src/descrip.mms
[generic]                  582    1474  39.5% -lh5- 861f May 30  1996 Mesa-2.2/src/Imakefile
[generic]                 1236    2396  51.6% -lh5- fc87 Jun 25  1997 Mesa-2.2/src/Makefile
[generic]                 1166    2173  53.7% -lh5- c451 Feb  3  1997 Mesa-2.2/src/Makefile.BeOS
[generic]                 1105    2066  53.5% -lh5- afe5 Oct 22  1996 Mesa-2.2/src/Makefile.NeXT
[generic]                 1114    7350  15.2% -lh5- d72f Nov 24  1996 Mesa-2.2/src/mms_depend
[generic]                 2466   10460  23.6% -lh5- 32cc Mar 13  1997 Mesa-2.2/src/accum.c
[generic]                  719    1427  50.4% -lh5- 30df Mar 13  1997 Mesa-2.2/src/accum.h
[generic]                 1390    3463  40.1% -lh5- 630f Mar 13  1997 Mesa-2.2/src/alpha.c
[generic]                  682    1235  55.2% -lh5- a273 Mar 13  1997 Mesa-2.2/src/alpha.h
[generic]                 1734    6526  26.6% -lh5- 0532 Mar 13  1997 Mesa-2.2/src/alphabuf.c
[generic]                  800    2350  34.0% -lh5- 7b4c Mar 13  1997 Mesa-2.2/src/alphabuf.h
[generic]                11352   74693  15.2% -lh5- 5a4a Mar 13  1997 Mesa-2.2/src/api.c
[generic]                 3943   20150  19.6% -lh5- 8863 Mar 13  1997 Mesa-2.2/src/attrib.c
[generic]                  659    1270  51.9% -lh5- 9591 Mar 13  1997 Mesa-2.2/src/attrib.h
[generic]                 1126    7136  15.8% -lh5- b584 Feb 17  1997 Mesa-2.2/src/depend
[generic]                 1122    7352  15.3% -lh5- 2be3 Jan  6  1996 Mesa-2.2/src/DEPEND.DOS
[generic]                 1238    2386  51.9% -lh5- ffbe Mar  3  1997 Mesa-2.2/src/MAKEFILE.DJ
[generic]                 1264    2424  52.1% -lh5- 5aff Mar 23  1997 Mesa-2.2/src/MAKEFILE.DOS
[generic]                 1160    2222  52.2% -lh5- 5eb1 Nov 24  1996 Mesa-2.2/src/Makefile.OpenStep
[generic]                 2398   10525  22.8% -lh5- b442 Apr 24  1996 Mesa-2.2/src/MesaGLos2.def
[generic]                  254     620  41.0% -lh5- d9c0 Nov 24  1996 Mesa-2.2/src/MesaGLos2.rsp
[generic]                 2043    5763  35.5% -lh5- 6917 Mar 13  1997 Mesa-2.2/src/bitmap.c
[generic]                  740    1791  41.3% -lh5- f1da Mar 13  1997 Mesa-2.2/src/bitmap.h
[generic]                 3448   13998  24.6% -lh5- 0566 Mar 13  1997 Mesa-2.2/src/blend.c
[generic]                  780    1714  45.5% -lh5- a9a4 Mar 13  1997 Mesa-2.2/src/blend.h
[generic]                 1290    3825  33.7% -lh5- 8d5f Mar 13  1997 Mesa-2.2/src/bresenhm.c
[generic]                 1565    5055  31.0% -lh5- f94a Mar 13  1997 Mesa-2.2/src/bresenhm.h
[generic]                 6568   29517  22.3% -lh5- 26cc Mar 13  1997 Mesa-2.2/src/clip.c
[generic]                  841    1968  42.7% -lh5- 17d5 Mar 13  1997 Mesa-2.2/src/clip.h
[generic]                 7972   40748  19.6% -lh5- 3590 Mar 13  1997 Mesa-2.2/src/cmesa.c
[generic]                  744    2440  30.5% -lh5- c948 Nov 24  1996 Mesa-2.2/src/colors.h
[generic]                 1521    3508  43.4% -lh5- a329 Mar 13  1997 Mesa-2.2/src/config.h
[generic]                12617   51369  24.6% -lh5- 8c17 Mar 14  1997 Mesa-2.2/src/context.c
[generic]                 1590    4375  36.3% -lh5- c057 Mar 13  1997 Mesa-2.2/src/context.h
[generic]                 3161   14695  21.5% -lh5- ede9 Mar 13  1997 Mesa-2.2/src/copypix.c
[generic]                  674    1227  54.9% -lh5- dbdf Mar 13  1997 Mesa-2.2/src/copypix.h
[generic]                 4069   14875  27.4% -lh5- 5ac1 Mar 13  1997 Mesa-2.2/src/dd.h
[generic]                 4985   20342  24.5% -lh5- d7e4 Mar 13  1997 Mesa-2.2/src/ddsample.c
[generic]                 3862   20032  19.3% -lh5- 9e9f Mar 13  1997 Mesa-2.2/src/depth.c
[generic]                 1017    3040  33.5% -lh5- 7648 Mar 13  1997 Mesa-2.2/src/depth.h
[generic]                15910   80009  19.9% -lh5- 09b2 Mar 13  1997 Mesa-2.2/src/dlist.c
[generic]                 2603   14902  17.5% -lh5- a853 Mar 13  1997 Mesa-2.2/src/dlist.h
[generic]                 8176   32551  25.1% -lh5- 7921 Mar  2  1997 Mesa-2.2/src/dosmesa.c
[generic]                11643   60104  19.4% -lh5- ddc9 Mar 13  1997 Mesa-2.2/src/draw.c
[generic]                  855    2157  39.6% -lh5- 5bcc Mar 13  1997 Mesa-2.2/src/draw.h
[generic]                 5939   29614  20.1% -lh5- b402 Mar 13  1997 Mesa-2.2/src/drawpix.c
[generic]                  711    1291  55.1% -lh5- 31fe Mar 13  1997 Mesa-2.2/src/drawpix.h
[generic]                 3671   18873  19.5% -lh5- 60b5 Mar 13  1997 Mesa-2.2/src/enable.c
[generic]                  670    1344  49.9% -lh5- 92da Mar 13  1997 Mesa-2.2/src/enable.h
[generic]                11029   73269  15.1% -lh5- fdff Mar 13  1997 Mesa-2.2/src/eval.c
[generic]                  976    3555  27.5% -lh5- 3c2e Mar 13  1997 Mesa-2.2/src/eval.h
[generic]                 2535   10209  24.8% -lh5- 1898 Mar 13  1997 Mesa-2.2/src/feedback.c
[generic]                  898    2086  43.0% -lh5- 524f Mar 13  1997 Mesa-2.2/src/feedback.h
[generic]                  931    2030  45.9% -lh5- 79d7 Mar 13  1997 Mesa-2.2/src/fixed.h
[generic]                 2360   11749  20.1% -lh5- a57f Mar 13  1997 Mesa-2.2/src/fog.c
[generic]                  767    1694  45.3% -lh5- 18d0 Mar 13  1997 Mesa-2.2/src/fog.h
[generic]                16688  102118  16.3% -lh5- b06a Mar 13  1997 Mesa-2.2/src/get.c
[generic]                  673    1341  50.2% -lh5- d57b Mar 13  1997 Mesa-2.2/src/get.h
[generic]                10958   42198  26.0% -lh5- ebca Mar 13  1997 Mesa-2.2/src/glx.c
[generic]                 4143   18890  21.9% -lh5- 3933 Mar 13  1997 Mesa-2.2/src/image.c
[generic]                 1014    2645  38.3% -lh5- ca10 Mar 13  1997 Mesa-2.2/src/image.h
[generic]                 1605    4874  32.9% -lh5- 93ed Mar 13  1997 Mesa-2.2/src/interp.c
[generic]                 1338    3432  39.0% -lh5- a46e Mar 13  1997 Mesa-2.2/src/interp.h
[generic]                 9724   44961  21.6% -lh5- 37ac Mar 13  1997 Mesa-2.2/src/light.c
[generic]                 1078    3850  28.0% -lh5- 2858 Mar 13  1997 Mesa-2.2/src/light.h
[generic]                 4418   23689  18.7% -lh5- f857 Mar 13  1997 Mesa-2.2/src/lines.c
[generic]                  665    1230  54.1% -lh5- 6781 Mar 13  1997 Mesa-2.2/src/lines.h
[generic]                 2290   17834  12.8% -lh5- fab5 Mar 13  1997 Mesa-2.2/src/logic.c
[generic]                  815    2203  37.0% -lh5- ad49 Mar 13  1997 Mesa-2.2/src/logic.h
[generic]                 2262    6174  36.6% -lh5- 3176 Mar 13  1997 Mesa-2.2/src/macros.h
[generic]                 1510    5002  30.2% -lh5- 8192 Mar 13  1997 Mesa-2.2/src/masking.c
[generic]                  849    2376  35.7% -lh5- 44b4 Mar 13  1997 Mesa-2.2/src/masking.h
[generic]                 6195   22111  28.0% -lh5- 2e07 Mar 13  1997 Mesa-2.2/src/matrix.c
[generic]                  852    2114  40.3% -lh5- bd9d Mar 13  1997 Mesa-2.2/src/matrix.h
[generic]                 3232   12824  25.2% -lh5- 8809 Mar 13  1997 Mesa-2.2/src/misc.c
[generic]                  778    1734  44.9% -lh5- 8f09 Mar 13  1997 Mesa-2.2/src/misc.h
[generic]                 7406   36320  20.4% -lh5- d960 Mar 13  1997 Mesa-2.2/src/osmesa.c
[generic]                 2933   13925  21.1% -lh5- 18c2 Mar 13  1997 Mesa-2.2/src/pb.c
[generic]                 1559    4225  36.9% -lh5- 4461 Mar 13  1997 Mesa-2.2/src/pb.h
[generic]                 4902   25322  19.4% -lh5- 5651 Mar 13  1997 Mesa-2.2/src/pixel.c
[generic]                  919    2564  35.8% -lh5- fec2 Mar 13  1997 Mesa-2.2/src/pixel.h
[generic]                 3895   18110  21.5% -lh5- 9de2 Mar 13  1997 Mesa-2.2/src/pointers.c
[generic]                  664    1237  53.7% -lh5- f943 Mar 13  1997 Mesa-2.2/src/pointers.h
[generic]                 3464   15653  22.1% -lh5- 27d1 Mar 13  1997 Mesa-2.2/src/points.c
[generic]                  647    1155  56.0% -lh5- cde2 Mar 13  1997 Mesa-2.2/src/points.h
[generic]                 1254    3658  34.3% -lh5- b2fa Mar 13  1997 Mesa-2.2/src/polygon.c
[generic]                  715    1484  48.2% -lh5- 97da Mar 13  1997 Mesa-2.2/src/polygon.h
[generic]                 4629   25273  18.3% -lh5- 672b Mar 13  1997 Mesa-2.2/src/readpix.c
[generic]                  676    1239  54.6% -lh5- 9d71 Mar 13  1997 Mesa-2.2/src/readpix.h
[generic]                 1235    2833  43.6% -lh5- 2bf7 Mar 13  1997 Mesa-2.2/src/scissor.c
[generic]                  716    1465  48.9% -lh5- 6f9b Mar 13  1997 Mesa-2.2/src/scissor.h
[generic]                 4400   25663  17.1% -lh5- b30e Mar 13  1997 Mesa-2.2/src/span.c
[generic]                  875    2577  34.0% -lh5- a2da Mar 13  1997 Mesa-2.2/src/span.h
[generic]                 4294   22756  18.9% -lh5- b659 Mar 13  1997 Mesa-2.2/src/stencil.c
[generic]                  857    2391  35.8% -lh5- a10c Mar 13  1997 Mesa-2.2/src/stencil.h
[generic]                 3303   13897  23.8% -lh5- dc53 Mar 13  1997 Mesa-2.2/src/svgamesa.c
[generic]                 9541   68031  14.0% -lh5- 4afa Mar 13  1997 Mesa-2.2/src/teximage.c
[generic]                 1295    7046  18.4% -lh5- c326 Mar 13  1997 Mesa-2.2/src/teximage.h
[generic]                 2902   14276  20.3% -lh5- 2eb0 Mar 13  1997 Mesa-2.2/src/texobj.c
[generic]                  799    1910  41.8% -lh5- 3fcf Mar 13  1997 Mesa-2.2/src/texobj.h
[generic]                14382  110453  13.0% -lh5- dad3 Mar 13  1997 Mesa-2.2/src/texture.c
[generic]                 1147    4254  27.0% -lh5- c60a Mar 13  1997 Mesa-2.2/src/texture.h
[generic]                 5057   23099  21.9% -lh5- e71e Mar 13  1997 Mesa-2.2/src/triangle.c
[generic]                  627    1110  56.5% -lh5- 4033 Mar 13  1997 Mesa-2.2/src/triangle.h
[generic]                 8334   30026  27.8% -lh5- 942d Mar 14  1997 Mesa-2.2/src/tritemp.h
[generic]                11155   42730  26.1% -lh5- 6ade Mar 13  1997 Mesa-2.2/src/types.h
[generic]                 5947   40387  14.7% -lh5- a980 Mar 13  1997 Mesa-2.2/src/varray.c
[generic]                  898    3127  28.7% -lh5- acf7 Mar 13  1997 Mesa-2.2/src/varray.h
[generic]                11286   50388  22.4% -lh5- 7ec3 Jun 25  1997 Mesa-2.2/src/ADisp_AGA.c
[generic]                  738    1319  56.0% -lh5- 92f9 Mar 13  1997 Mesa-2.2/src/vb.c
[generic]                 1564    3439  45.5% -lh5- eb1f Mar 13  1997 Mesa-2.2/src/vb.h
[generic]                 1451    5381  27.0% -lh5- 3276 Mar 13  1997 Mesa-2.2/src/vertex.c
[generic]                  809    2254  35.9% -lh5- 2cf8 Mar 13  1997 Mesa-2.2/src/vertex.h
[generic]                 1362    3032  44.9% -lh5- e579 Mar 13  1997 Mesa-2.2/src/winpos.c
[generic]                  791    2263  35.0% -lh5- 4940 Mar 13  1997 Mesa-2.2/src/winpos.h
[generic]                12508   47156  26.5% -lh5- 3130 Jan 28  1997 Mesa-2.2/src/wmesa.c
[generic]                12123   46483  26.1% -lh5- b6bd Nov 24  1996 Mesa-2.2/src/wmesa_stereo.c
[generic]                 1202    2555  47.0% -lh5- b2bd Nov 24  1996 Mesa-2.2/src/wmesadef.h
[generic]                 3521    9426  37.4% -lh5- 4c0b Mar 13  1997 Mesa-2.2/src/xfonts.c
[generic]                 2328    8421  27.6% -lh5- a455 Mar 13  1997 Mesa-2.2/src/xform.c
[generic]                 1059    2579  41.1% -lh5- 99e3 Mar 13  1997 Mesa-2.2/src/xform.h
[generic]                13075   46366  28.2% -lh5- cb9b Mar 13  1997 Mesa-2.2/src/xmesa1.c
[generic]                10718   87309  12.3% -lh5- ee9e Mar 13  1997 Mesa-2.2/src/xmesa2.c
[generic]                 7847   57766  13.6% -lh5- bb10 Mar 13  1997 Mesa-2.2/src/xmesa3.c
[generic]                 4569   12697  36.0% -lh5- e2bf Mar 13  1997 Mesa-2.2/src/xmesaP.h
[generic]                 1322    3258  40.6% -lh5- ae47 Jan 29  1997 Mesa-2.2/demos/bounce.c
[generic]                 1724    5350  32.2% -lh5- 3a6d Mar 12  1997 Mesa-2.2/demos/clearspd.c
[generic]                  554    1571  35.3% -lh5- 00d4 Oct 16  1996 Mesa-2.2/demos/descrip.mms
[generic]                  585    1573  37.2% -lh5- 9ce2 Oct 21  1995 Mesa-2.2/demos/fdraw.f
[generic]                  455     858  53.0% -lh5- 6e3e Oct 21  1995 Mesa-2.2/demos/ftest.c
[generic]                  953    4666  20.4% -lh5- 2222 Jan 29  1997 Mesa-2.2/demos/gamma.c
[generic]                  433    2004  21.6% -lh5- f38e May 30  1996 Mesa-2.2/demos/Imakefile
[generic]                  891    1611  55.3% -lh5- d321 Jun 25  1997 Mesa-2.2/demos/Makefile
[generic]                  301     891  33.8% -lh5- 4bcd Jun 25  1997 Mesa-2.2/src/ADisp_AGA.h
[generic]                 8605   46823  18.4% -lh5- ff0b Jun 25  1997 Mesa-2.2/src/ADisp_Cyb.c
[generic]                  177     304  58.2% -lh5- 8e71 Jun 25  1997 Mesa-2.2/src/ADisp_Cyb.h
[generic]                 4480   13845  32.4% -lh5- 59db Jun 25  1997 Mesa-2.2/src/AmigaMesa.c
[generic]                 5963   32654  18.3% -lh5- 0551 Jun 25  1997 Mesa-2.2/src/api1.c
[generic]                 5448   35601  15.3% -lh5- ed15 Jun 25  1997 Mesa-2.2/src/api2.c
[generic]                    0       0 ****** -lh0- 0000 Jun 25  1997 Mesa-2.2/src/SCOPTIONS
[generic]                 1735    4329  40.1% -lh5- 37d0 Jun 25  1997 Mesa-2.2/src/Smakefile
[generic]                 2040    7699  26.5% -lh5- 9b9b Jan 29  1997 Mesa-2.2/demos/gears.c
[generic]                 1074    2420  44.4% -lh5- 2617 Jan 29  1997 Mesa-2.2/demos/glxdemo.c
[generic]                 1547    3645  42.4% -lh5- 3edb Jan 29  1997 Mesa-2.2/demos/glxpixmap.c
[generic]                 2041    6105  33.4% -lh5- 3475 Jan 29  1997 Mesa-2.2/demos/isosurf.c
[generic]                 6850   41060  16.7% -lh5- d98b Feb 13  1997 Mesa-2.2/demos/morph3d.c
[generic]                 3368    8428  40.0% -lh5- d644 Jan 29  1997 Mesa-2.2/demos/offset.c
[generic]                 1329    3420  38.9% -lh5- 13be May  1  1996 Mesa-2.2/demos/osdemo.c
[generic]                 2559    8422  30.4% -lh5- f38a Jan 29  1997 Mesa-2.2/demos/reflect.c
[generic]                 1903    5775  33.0% -lh5- a4d5 Feb 21  1997 Mesa-2.2/demos/spectex.c
[generic]                 1010    2844  35.5% -lh5- f6a0 Jan 29  1997 Mesa-2.2/demos/spin.c
[generic]                 4967   15970  31.1% -lh5- 56b8 Mar  4  1997 Mesa-2.2/demos/stex3d.c
[generic]                 2613    8054  32.4% -lh5- 6222 Jul 28  1995 Mesa-2.2/demos/tess_demo.c
[generic]                  606    1380  43.9% -lh5- 5505 Jun  7  1995 Mesa-2.2/demos/test0.c
[generic]                 1833    6428  28.5% -lh5- 0c79 Jan 29  1997 Mesa-2.2/demos/texobj.c
[generic]                 1641    4322  38.0% -lh5- 139d Mar 12  1997 Mesa-2.2/demos/trispd.c
[generic]                 2295    5330  43.1% -lh5- a363 Jan 29  1997 Mesa-2.2/book/accanti.c
[generic]                 1989    4631  42.9% -lh5- 580f Jan 29  1997 Mesa-2.2/book/accnot.c
[generic]                 2809    7307  38.4% -lh5- 4862 Jan 29  1997 Mesa-2.2/book/accpersp.c
[generic]                 3594    8405  42.8% -lh5- 9a4a Jan 29  1997 Mesa-2.2/book/accum.c
[generic]                 1293   10102  12.8% -lh5- 94f9 May 29  1996 Mesa-2.2/book/Imakefile
[generic]                  766    1448  52.9% -lh5- 58da Aug  1  1995 Mesa-2.2/book/Makefile
[generic]                  727    1868  38.9% -lh5- 9217 Jul 28  1995 Mesa-2.2/book/NOTES
[generic]                 1229    2260  54.4% -lh5- 74eb Dec 19  1994 Mesa-2.2/book/README
[generic]                67175  418278  16.1% -lh5- 8aaf Jun  2  1995 Mesa-2.2/demos/isosurf.dat
[generic]                    0       0 ****** -lh0- 0000 Jun 25  1997 Mesa-2.2/demos/SCOPTIONS
[generic]                 1248    2692  46.4% -lh5- 81eb Jun 25  1997 Mesa-2.2/demos/Smakefile
[generic]                 1868    7044  26.5% -lh5- ab66 Oct 15  1996 Mesa-2.2/demos/vgears.c
[generic]                  565    1039  54.4% -lh5- 7948 Jan 16  1996 Mesa-2.2/demos/vindex.c
[generic]                  565    1355  41.7% -lh5- 5155 Oct 15  1996 Mesa-2.2/demos/vtest.c
[generic]                  909    1831  49.6% -lh5- e44b Jan 29  1997 Mesa-2.2/demos/winpos.c
[generic]                 2156    7481  28.8% -lh5- 80cf Jan 29  1997 Mesa-2.2/demos/xdemo.c
[generic]                 2017    3947  51.1% -lh5- 0d17 Jan 29  1997 Mesa-2.2/book/aim.c
[generic]                 1725    3483  49.5% -lh5- 740f Jan 29  1997 Mesa-2.2/book/alpha.c
[generic]                 2062    4430  46.5% -lh5- 6805 Jan 29  1997 Mesa-2.2/book/alpha3D.c
[generic]                 1909    3839  49.7% -lh5- 4586 Jan 29  1997 Mesa-2.2/book/anti.c
[generic]                 1881    3680  51.1% -lh5- d3e0 Jan 29  1997 Mesa-2.2/book/antiindex.c
[generic]                 1845    3683  50.1% -lh5- 35e6 Jan 29  1997 Mesa-2.2/book/antipindex.c
[generic]                 1774    3520  50.4% -lh5- 472b Jan 29  1997 Mesa-2.2/book/antipoint.c
[generic]                 2109    4650  45.4% -lh5- 5148 Jan 29  1997 Mesa-2.2/book/antipoly.c
[generic]                 1760    3488  50.5% -lh5- 741e Jan 29  1997 Mesa-2.2/book/bezcurve.c
[generic]                 1982    4328  45.8% -lh5- dfb0 Jan 29  1997 Mesa-2.2/book/bezmesh.c
[generic]                 1868    3937  47.4% -lh5- fb97 Jan 29  1997 Mesa-2.2/book/bezsurf.c
[generic]                 2031    4529  44.8% -lh5- fad1 Jan 29  1997 Mesa-2.2/book/checker.c
[generic]                 2032    4533  44.8% -lh5- 6b16 Jan 29  1997 Mesa-2.2/book/checker2.c
[generic]                 1982    4398  45.1% -lh5- 2f5f Jan 29  1997 Mesa-2.2/book/chess.c
[generic]                 1690    3295  51.3% -lh5- 019e Jan 29  1997 Mesa-2.2/book/clip.c
[generic]                 1946    4417  44.1% -lh5- 3fc0 Jan 29  1997 Mesa-2.2/book/colormat.c
[generic]                 1994    4480  44.5% -lh5- edc4 Jan 29  1997 Mesa-2.2/book/cone.c
[generic]                 1757    3430  51.2% -lh5- e9b6 Jan 29  1997 Mesa-2.2/book/cube.c
[generic]                 1813    3604  50.3% -lh5- 506a Jan 29  1997 Mesa-2.2/book/curve.c
[generic]                 1773    3447  51.4% -lh5- e02c Jan 29  1997 Mesa-2.2/book/depthcue.c
[generic]                 1839    3983  46.2% -lh5- 2c4b Feb 18  1997 Mesa-2.2/book/disk.c
[generic]                 3330    8400  39.6% -lh5- 6d9b Jan 29  1997 Mesa-2.2/book/dof.c
[generic]                 2469    5496  44.9% -lh5- 1621 Jan 29  1997 Mesa-2.2/book/dofnot.c
[generic]                 1879    3906  48.1% -lh5- 54bb Jan 29  1997 Mesa-2.2/book/double.c
[generic]                 1661    3315  50.1% -lh5- 707f Jan 29  1997 Mesa-2.2/book/drawf.c
[generic]                 2212    5055  43.8% -lh5- c06f Jan 29  1997 Mesa-2.2/book/feedback.c
[generic]                 2482    5476  45.3% -lh5- f0a4 Jan 29  1997 Mesa-2.2/book/fog.c
[generic]                 2002    4348  46.0% -lh5- d185 Jan 29  1997 Mesa-2.2/book/fogindex.c
[generic]                 3082   11728  26.3% -lh5- c828 Jan 29  1997 Mesa-2.2/book/font.c
[generic]                 2703    5900  45.8% -lh5- 8702 Dec 19  1994 Mesa-2.2/book/jitter.h
[generic]                 1809    3673  49.3% -lh5- 742a Jan 29  1997 Mesa-2.2/book/light.c
[generic]                 1738    3586  48.5% -lh5- e468 Jan 29  1997 Mesa-2.2/book/linelist.c
[generic]                 1948    4231  46.0% -lh5- ab86 Jan 29  1997 Mesa-2.2/book/lines.c
[generic]                 1783    3541  50.4% -lh5- f1e4 Jan 29  1997 Mesa-2.2/book/list.c
[generic]                 1844    3702  49.8% -lh5- 2f52 Jan 29  1997 Mesa-2.2/book/list2.c
[generic]                 1929    3952  48.8% -lh5- 4133 Jan 29  1997 Mesa-2.2/book/maplight.c
[generic]                 2671   10872  24.6% -lh5- 47fc Jan 29  1997 Mesa-2.2/book/material.c
[generic]                 2200    5575  39.5% -lh5- 99fe Jan 29  1997 Mesa-2.2/book/mipmap.c
[generic]                 1819    3858  47.1% -lh5- b67a Jan 29  1997 Mesa-2.2/book/model.c
[generic]                 2113    4380  48.2% -lh5- d435 Jan 29  1997 Mesa-2.2/book/movelight.c
[generic]                 2476    6033  41.0% -lh5- e801 Jan 29  1997 Mesa-2.2/book/nurbs.c
[generic]                 2551    5591  45.6% -lh5- 6cb9 Jan 29  1997 Mesa-2.2/book/pickdepth.c
[generic]                 2109    4477  47.1% -lh5- bbd6 Jan 29  1997 Mesa-2.2/book/pickline.c
[generic]                 2578    5627  45.8% -lh5- 8b4b Jan 29  1997 Mesa-2.2/book/picksquare.c
[generic]                 2073    5257  39.4% -lh5- 43a3 Jan 29  1997 Mesa-2.2/book/plane.c
[generic]                 1830    3757  48.7% -lh5- 665b Jan 29  1997 Mesa-2.2/book/planet.c
[generic]                 1858    3907  47.6% -lh5- f782 Jan 29  1997 Mesa-2.2/book/planetup.c
[generic]                 1864    4647  40.1% -lh5- 899c Jan 29  1997 Mesa-2.2/book/polys.c
[generic]                 1829    3905  46.8% -lh5- 7789 Jan 29  1997 Mesa-2.2/book/robot.c
[generic]                 1955    4273  45.8% -lh5- b444 Jan 29  1997 Mesa-2.2/book/sccolorlight.c
[generic]                 1938    4247  45.6% -lh5- 03c4 Jan 29  1997 Mesa-2.2/book/scene.c
[generic]                 1877    4121  45.5% -lh5- 4bbc Jan 29  1997 Mesa-2.2/book/scenebamb.c
[generic]                 1895    4151  45.7% -lh5- ba87 Jan 29  1997 Mesa-2.2/book/sceneflat.c
[generic]                 2770    7026  39.4% -lh5- 0f6f Jan 29  1997 Mesa-2.2/book/select.c
[generic]                 1416    2627  53.9% -lh5- 2fb8 Jan 29  1997 Mesa-2.2/book/simple.c
[generic]                 1665    3280  50.8% -lh5- e362 Jan 29  1997 Mesa-2.2/book/smooth.c
[generic]                 1599    3051  52.4% -lh5- 3eac Jan 29  1997 Mesa-2.2/book/sphere.c
[generic]                 2291    5351  42.8% -lh5- 288c Jan 29  1997 Mesa-2.2/book/stencil.c
[generic]                 2223    5094  43.6% -lh5- d17c Jan 29  1997 Mesa-2.2/book/stroke.c
[generic]                 2124    4453  47.7% -lh5- 4c11 Jan 29  1997 Mesa-2.2/book/surface.c
[generic]                 2142    4931  43.4% -lh5- d053 Jan 29  1997 Mesa-2.2/book/tea.c
[generic]                 2013    4692  42.9% -lh5- bd60 Jan 29  1997 Mesa-2.2/book/teaambient.c
[generic]                 2916    7328  39.8% -lh5- 2e81 Jan 29  1997 Mesa-2.2/book/teapots.c
[generic]                 2060    4379  47.0% -lh5- 1592 Jan 29  1997 Mesa-2.2/book/texgen.c
[generic]                 2173    4887  44.5% -lh5- b70c Jan 29  1997 Mesa-2.2/book/texturesurf.c
[generic]                    0       0 ****** -lh0- 0000 Jun 25  1997 Mesa-2.2/book/SCOPTIONS
[generic]                 1127    2431  46.4% -lh5- eb08 Jun 25  1997 Mesa-2.2/book/Smakefile
[generic]                 2365    5245  45.1% -lh5- 0641 Jan 29  1997 Mesa-2.2/book/trim.c
[generic]                 2217    4406  50.3% -lh5- 5ca5 Jan 29  1997 Mesa-2.2/book/xfont.c
[generic]                40654   51607  78.8% -lh5- b8c3 Dec 19  1994 Mesa-2.2/samples/1.rgb
[generic]                34493   39632  87.0% -lh5- f8d7 Dec 19  1994 Mesa-2.2/samples/2.rgb
[generic]                55470   89287  62.1% -lh5- 2252 Dec 19  1994 Mesa-2.2/samples/3.rgb
[generic]                32654   45167  72.3% -lh5- d3bc Dec 19  1994 Mesa-2.2/samples/4.rgb
[generic]                 1527    3598  42.4% -lh5- 9b83 Oct  3  1995 Mesa-2.2/samples/accum.c
[generic]                 2001    6263  31.9% -lh5- 1c15 Jul 21  1996 Mesa-2.2/samples/bitmap1.c
[generic]                 4027   42272   9.5% -lh5- a00f Jan 29  1997 Mesa-2.2/samples/bitmap2.c
[generic]                 1963    7165  27.4% -lh5- 74e3 Jan 29  1997 Mesa-2.2/samples/blendeq.c
[generic]                  677    4256  15.9% -lh5- 04b5 May 30  1996 Mesa-2.2/samples/Imakefile
[generic]                  655    1389  47.2% -lh5- 2c3d Jun 25  1997 Mesa-2.2/samples/Makefile
[generic]                  587    1224  48.0% -lh5- 5f65 Jul 28  1995 Mesa-2.2/samples/NOTES
[generic]                 2864   14414  19.9% -lh5- c0b8 Dec 19  1994 Mesa-2.2/samples/README
[generic]                 1334    3598  37.1% -lh5- 32a6 Jan 29  1997 Mesa-2.2/samples/blendxor.c
[generic]                 1828    4311  42.4% -lh5- a200 Jan 23  1996 Mesa-2.2/samples/copy.c
[generic]                 1648    4365  37.8% -lh5- 06f0 Oct  3  1995 Mesa-2.2/samples/cursor.c
[generic]                 1829    5187  35.3% -lh5- 4f20 Oct  3  1995 Mesa-2.2/samples/depth.c
[generic]                 3110   10487  29.7% -lh5- 5ebd Jan 29  1997 Mesa-2.2/samples/eval.c
[generic]                 2306    7175  32.1% -lh5- 98b4 Oct  3  1995 Mesa-2.2/samples/fog.c
[generic]                 2040    5784  35.3% -lh5- 7c6e Oct  3  1995 Mesa-2.2/samples/font.c
[generic]                 1849    4420  41.8% -lh5- 5f4a Nov 23  1996 Mesa-2.2/samples/line.c
[generic]                 6014   36524  16.5% -lh5- 9ed0 Mar 14  1997 Mesa-2.2/samples/logo.c
[generic]                 2230    6494  34.3% -lh5- 6792 Oct  3  1995 Mesa-2.2/samples/nurb.c
[generic]                 1749    5421  32.3% -lh5- 552e Mar 13  1997 Mesa-2.2/samples/oglinfo.c
[generic]                 3183    8934  35.6% -lh5- b55a Jan 29  1997 Mesa-2.2/samples/olympic.c
[generic]                 2838    8343  34.0% -lh5- 33cb May 20  1996 Mesa-2.2/samples/overlay.c
[generic]                 1862    4772  39.0% -lh5- fa74 Jun 12  1996 Mesa-2.2/samples/point.c
[generic]                 2475   11544  21.4% -lh5- 60a2 Oct  3  1995 Mesa-2.2/samples/prim.c
[generic]                 3280   10681  30.7% -lh5- 867f Jan 29  1997 Mesa-2.2/samples/quad.c
[generic]                    0       0 ****** -lh0- 0000 Jun 25  1997 Mesa-2.2/samples/SCOPTIONS
[generic]                 2887    9312  31.0% -lh5- a277 Oct  3  1995 Mesa-2.2/samples/select.c
[generic]                 2028    5761  35.2% -lh5- 1878 Oct  3  1995 Mesa-2.2/samples/shape.c
[generic]                 1281    2851  44.9% -lh5- 7370 Jun 25  1997 Mesa-2.2/samples/Smakefile
[generic]                 3008    8879  33.9% -lh5- ea18 Sep 12  1996 Mesa-2.2/samples/speed.c
[generic]                 4749   18175  26.1% -lh5- 5470 Mar 11  1997 Mesa-2.2/samples/sphere.c
[generic]                 2623    7089  37.0% -lh5- 7102 Jan 20  1996 Mesa-2.2/samples/star.c
[generic]                 1452    3385  42.9% -lh5- 161b Oct  3  1995 Mesa-2.2/samples/stencil.c
[generic]                 2707    8534  31.7% -lh5- afa5 Jan 29  1997 Mesa-2.2/samples/stretch.c
[generic]                 2524    7892  32.0% -lh5- 88b0 Oct  3  1995 Mesa-2.2/samples/texture.c
[generic]                 2836    8363  33.9% -lh5- b19a Jan 29  1997 Mesa-2.2/samples/tri.c
[generic]                 4358   15056  28.9% -lh5- dcb6 Jan 29  1997 Mesa-2.2/samples/wave.c
[generic]                 6986   17976  38.9% -lh5- b611 Jan 31  1997 Mesa-2.2/widgets-mesa/COPYING
[generic]                  665    1289  51.6% -lh5- 66c4 Jan 31  1997 Mesa-2.2/widgets-mesa/ChangeLog
[generic]                 5395   16009  33.7% -lh5- a34f Jan 31  1997 Mesa-2.2/widgets-mesa/config.guess
[generic]                 1870    4745  39.4% -lh5- 7841 Jan 31  1997 Mesa-2.2/widgets-mesa/config.status
[generic]                 5310   16318  32.5% -lh5- 6ffd Jan 31  1997 Mesa-2.2/widgets-mesa/config.sub
[generic]                19653   79791  24.6% -lh5- 202b Feb 15  1997 Mesa-2.2/widgets-mesa/configure
[generic]                 1993    4859  41.0% -lh5- 6ae1 Feb 15  1997 Mesa-2.2/widgets-mesa/configure.in
[generic]                  610    1274  47.9% -lh5- 0bd2 Jan 31  1997 Mesa-2.2/widgets-mesa/demos/ChangeLog
[generic]                  158     251  62.9% -lh5- 960b Jan 31  1997 Mesa-2.2/widgets-mesa/demos/Cube
[generic]                  459     780  58.8% -lh5- 5cb4 Jan 31  1997 Mesa-2.2/widgets-mesa/INSTALL
[generic]                 1618    4388  36.9% -lh5- d1a6 Jan 31  1997 Mesa-2.2/widgets-mesa/Makefile.in
[generic]                 1404    2675  52.5% -lh5- ac5e Jan 31  1997 Mesa-2.2/widgets-mesa/README
[generic]                  523    1025  51.0% -lh5- 3fa4 Jan 31  1997 Mesa-2.2/widgets-mesa/TODO
[generic]                 2965    9022  32.9% -lh5- f919 Jan 31  1997 Mesa-2.2/widgets-mesa/demos/cube.c
[generic]                  306     648  47.2% -lh5- e910 Jan 31  1997 Mesa-2.2/widgets-mesa/demos/Ed
[generic]                 6170   21626  28.5% -lh5- 9f1e Jan 31  1997 Mesa-2.2/widgets-mesa/demos/ed.c
[generic]                 3001   10887  27.6% -lh5- f5f4 Jan 31  1997 Mesa-2.2/widgets-mesa/demos/events
[generic]                 2103    6953  30.2% -lh5- 5735 Jan 31  1997 Mesa-2.2/widgets-mesa/demos/Makefile.in
[generic]                  190     355  53.5% -lh5- c13a Jan 31  1997 Mesa-2.2/widgets-mesa/demos/Mcube
[generic]                 3218   10192  31.6% -lh5- 0651 Jan 31  1997 Mesa-2.2/widgets-mesa/demos/mcube.c
[generic]                  311     535  58.1% -lh5- 08c2 Jan 31  1997 Mesa-2.2/widgets-mesa/demos/Tea
[generic]                 6387   18882  33.8% -lh5- f71f Jan 31  1997 Mesa-2.2/widgets-mesa/demos/tea.c
[generic]                  536    1238  43.3% -lh5- da3d Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/ChangeLog
[generic]                 1903    6980  27.3% -lh5- fc12 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/GLwDrawA.h
[generic]                 1580    4362  36.2% -lh5- fce3 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/GLwDrawAP.h
[generic]                  631    1051  60.0% -lh5- acd1 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/GLwMDrawA.h
[generic]                  632    1054  60.0% -lh5- 7ad0 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/GLwMDrawAP.h
[generic]                 1061    2071  51.2% -lh5- c305 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/Makefile
[generic]                 1014    2030  50.0% -lh5- ab85 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/Makefile.in
[generic]                  752    1693  44.4% -lh5- bc9f Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaDrawingArea.h
[generic]                 1139    3927  29.0% -lh5- 0073 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaDrawingAreaP.h
[generic]                  108     144  75.0% -lh5- 161c Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaMDrawingArea.h
[generic]                  110     148  74.3% -lh5- a906 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaMDrawingAreaP.h
[generic]                   81     116  69.8% -lh5- 5314 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaMWorkstation.h
[generic]                   81     118  68.6% -lh5- 6fbb Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaMWorkstationP.h
[generic]                 1067    4201  25.4% -lh5- 2621 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaWorkstation.h
[generic]                 1124    3204  35.1% -lh5- 44c4 Jan 31  1997 Mesa-2.2/widgets-mesa/include/GL/MesaWorkstationP.h
[generic]                 1857    4771  38.9% -lh5- 0b99 Jan 31  1997 Mesa-2.2/widgets-mesa/install-sh
[generic]                  231     420  55.0% -lh5- 57e7 Jan 31  1997 Mesa-2.2/widgets-mesa/man/ChangeLog
[generic]                 1887    4354  43.3% -lh5- 24da Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwCreateMDrawingArea.3x
[generic]                  683    2032  33.6% -lh5- eafb Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwCreateMDrawingArea.html
[generic]                  464     971  47.8% -lh5- 6939 Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwCreateMDrawingArea.pod
[generic]                 8528   29052  29.4% -lh5- d620 Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingArea.3x
[generic]                 7582   28843  26.3% -lh5- 7e35 Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingArea.html
[generic]                 6902   24689  28.0% -lh5- 86ab Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingArea.pod
[generic]                 1745    3905  44.7% -lh5- 3ec2 Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingAreaMakeCurrent.3x
[generic]                  492    1162  42.3% -lh5- b14b Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingAreaMakeCurrent.html
[generic]                  308     545  56.5% -lh5- fd32 Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingAreaMakeCurrent.pod
[generic]                 1728    3868  44.7% -lh5- de67 Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingAreaSwapBuffers.3x
[generic]                  476    1127  42.2% -lh5- b646 Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingAreaSwapBuffers.html
[generic]                  295     510  57.8% -lh5- dfef Jan 31  1997 Mesa-2.2/widgets-mesa/man/GLwDrawingAreaSwapBuffers.pod
[generic]                 1164    2477  47.0% -lh5- 5a71 Jan 31  1997 Mesa-2.2/widgets-mesa/man/Makefile.in
[generic]                 2300    5969  38.5% -lh5- 6e30 Jan 31  1997 Mesa-2.2/widgets-mesa/man/MesaDrawingArea.3x
[generic]                 1079    3613  29.9% -lh5- 14fd Jan 31  1997 Mesa-2.2/widgets-mesa/man/MesaDrawingArea.html
[generic]                  856    2560  33.4% -lh5- 54d2 Jan 31  1997 Mesa-2.2/widgets-mesa/man/MesaDrawingArea.pod
[generic]                 2554    7709  33.1% -lh5- ab3c Jan 31  1997 Mesa-2.2/widgets-mesa/man/MesaWorkstation.3x
[generic]                 1452    9019  16.1% -lh5- fbfe Jan 31  1997 Mesa-2.2/widgets-mesa/man/MesaWorkstation.html
[generic]                 1089    4141  26.3% -lh5- 2f00 Jan 31  1997 Mesa-2.2/widgets-mesa/man/MesaWorkstation.pod
[generic]                 1404    3616  38.8% -lh5- 11dd Jan 31  1997 Mesa-2.2/widgets-mesa/src/ChangeLog
[generic]                  741    1298  57.1% -lh5- d7cf Jan 31  1997 Mesa-2.2/widgets-mesa/src/GLwCreateMDrawingArea.c
[generic]                 5906   20799  28.4% -lh5- b824 Jan 31  1997 Mesa-2.2/widgets-mesa/src/GLwDrawingArea.c
[generic]                  709    1224  57.9% -lh5- c068 Jan 31  1997 Mesa-2.2/widgets-mesa/src/GLwDrawingAreaMakeCurrent.c
[generic]                  689    1182  58.3% -lh5- 0cf7 Jan 31  1997 Mesa-2.2/widgets-mesa/src/GLwDrawingAreaSwapBuffers.c
[generic]                  770    1366  56.4% -lh5- 8cb7 Jan 31  1997 Mesa-2.2/widgets-mesa/src/GLwMakeCurrent.c
[generic]                  628    1061  59.2% -lh5- dde2 Jan 31  1997 Mesa-2.2/widgets-mesa/src/GLwMDrawingArea.c
[generic]                  774    1370  56.5% -lh5- 4a03 Jan 31  1997 Mesa-2.2/widgets-mesa/src/GLwMMakeCurrent.c
[generic]                 1595    5104  31.2% -lh5- 44bb Jan 31  1997 Mesa-2.2/widgets-mesa/src/Makefile.in
[generic]                 2804    8603  32.6% -lh5- c826 Jan 31  1997 Mesa-2.2/widgets-mesa/src/MesaDrawingArea.c
[generic]                   73      78  93.6% -lh5- e9ee Jan 31  1997 Mesa-2.2/widgets-mesa/src/MesaMDrawingArea.c
[generic]                   52      52 100.0% -lh0- 11d7 Jan 31  1997 Mesa-2.2/widgets-mesa/src/MesaMWorkstation.c
[generic]                 4608   20042  23.0% -lh5- 17f3 Jan 31  1997 Mesa-2.2/widgets-mesa/src/MesaWorkstation.c
[generic]                 6704   24543  27.3% -lh5- 1b03 Sep 13  1996 Mesa-2.2/widgets-sgi/GLwDrawA.c
[generic]                 1007    2996  33.6% -lh5- caa5 Jun 25  1997 Mesa-2.2/amiga/AmigaMesa.Install
[generic]                 1050    1919  54.7% -lh5- e841 Jun 25  1997 Mesa-2.2/amiga/AmigaMesa.Install.info
[generic]                 4620   14298  32.3% -lh5- 3252 Oct  3  1996 Mesa-2.2/widgets-sgi/boilerplate.c
[generic]                  101     259  39.0% -lh5- 545a Sep 13  1996 Mesa-2.2/widgets-sgi/depend
[generic]                 2407    6611  36.4% -lh5- 3877 Sep 13  1996 Mesa-2.2/widgets-sgi/GLwDrawA.h
[generic]                 1650    4291  38.5% -lh5- 0041 Sep 13  1996 Mesa-2.2/widgets-sgi/GLwDrawAP.h
[generic]                 1120    2030  55.2% -lh5- 533a Sep 13  1996 Mesa-2.2/widgets-sgi/GLwMDrawA.c
[generic]                 1120    2030  55.2% -lh5- 914b Sep 13  1996 Mesa-2.2/widgets-sgi/GLwMDrawA.h
[generic]                 1121    2031  55.2% -lh5- a453 Sep 13  1996 Mesa-2.2/widgets-sgi/GLwMDrawAP.h
[generic]                  502     899  55.8% -lh5- 99ad Feb  8  1997 Mesa-2.2/widgets-sgi/Makefile
[generic]                  487     873  55.8% -lh5- b1e0 Sep 13  1996 Mesa-2.2/widgets-sgi/Makefile~
[generic]                 1352    2490  54.3% -lh5- fbeb Sep 13  1996 Mesa-2.2/widgets-sgi/README
[generic]                  459    1351  34.0% -lh5- 363c Jun 25  1997 Mesa-2.2/amiga/Examples/Build.info
[generic]                  174     290  60.0% -lh5- a354 Jun 25  1997 Mesa-2.2/amiga/Examples/SCoptions
[generic]                 1052    1736  60.6% -lh5- 5e73 Jun 25  1997 Mesa-2.2/amiga/Examples/SCoptions.info
[generic]                 9656   23724  40.7% -lh5- 35fd Jun 25  1997 Mesa-2.2/amiga/library/FileReplace
[generic]                 1538    4194  36.7% -lh5- 7710 Jun 25  1997 Mesa-2.2/amiga/library/FileReplace.cpp
[generic]                 6554   58311  11.2% -lh5- 5b7c Jun 25  1997 Mesa-2.2/amiga/library/Fixprotos
[generic]                 3208   17967  17.9% -lh5- 054a Jun 25  1997 Mesa-2.2/amiga/library/gl.fd
[generic]                10162   53801  18.9% -lh5- a71e Jun 25  1997 Mesa-2.2/amiga/library/gl.h
[generic]                 2560   15499  16.5% -lh5- 0303 Jun 25  1997 Mesa-2.2/amiga/library/gl_pragma.h
[generic]                  286     576  49.7% -lh5- ec5c Jun 25  1997 Mesa-2.2/amiga/library/installscript
[generic]                 1501    4472  33.6% -lh5- 734f Jun 25  1997 Mesa-2.2/amiga/misc/ht__colors.a
[generic]                 1332    8234  16.2% -lh5- b7d5 Jun 25  1997 Mesa-2.2/amiga/misc/ht_colors.c
[generic]                  297     613  48.5% -lh5- c509 Jun 25  1997 Mesa-2.2/amiga/misc/ht_colors.h
[generic]                  195     328  59.5% -lh5- 7193 Jun 25  1997 Mesa-2.2/amiga/SCOPTIONS
[generic]                 1075    1674  64.2% -lh5- 35d2 Jun 25  1997 Mesa-2.2/amiga/SCoptions.info
[generic]                  260     423  61.5% -lh5- 744d Aug 26  1996 Mesa-2.2/util/errcheck.c
[generic]                  609    1380  44.1% -lh5- 8246 Oct 10  1996 Mesa-2.2/util/glutskel.c
[generic]                  243     462  52.6% -lh5- 5945 Aug 26  1996 Mesa-2.2/util/idproj.c
[generic]                 1045    2578  40.5% -lh5- 7ef8 Aug 26  1996 Mesa-2.2/util/mwmborder.c
[generic]                  410    1346  30.5% -lh5- ce8d Aug 26  1996 Mesa-2.2/util/projshad.c
[generic]                  261     440  59.3% -lh5- d2fc Aug 28  1996 Mesa-2.2/util/README
[generic]                 1977    6984  28.3% -lh5- a340 Nov 22  1996 Mesa-2.2/util/readtex.c
[generic]                  413     849  48.6% -lh5- 90c0 Aug 26  1996 Mesa-2.2/util/winpos.c
[generic]                  106     136  77.9% -lh5- aa47 Aug 26  1996 Mesa-2.2/util/xalloccolor.c
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       527 files 1485643 5478035  27.1%            Jun 27  1997
Page generated in 0.02 seconds
Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>