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

util/libs/StormMesa2010.lha

Mirror:Random
Showing:m68k-amigaosppc-amigaosppc-morphosi386-arosi386-amithlonppc-warpupppc-powerupgeneric
No screenshot available
Short:StormMesa2010 reworked sources
Author:Sam Jordan & others
Uploader:thellier free fr
Type:util/libs
Version:2.5 beta (June 2012)
Requires:RTG system,68020-40,fpu
Architecture:m68k-amigaos >= 3.0.0
Date:2013-04-19
Download:http://aminet.net/util/libs/StormMesa2010.lha - View contents
Readme:http://aminet.net/util/libs/StormMesa2010.readme
Downloads:2740

DESCRIPTION
=========== 
StormMesa is a 68020-40 OpenGL implementation that use hardware Warp3D 
So programs like glExcess,Cube,etc... may be hardware rendered in WinUAE/Wazp3D
or on real Amiga/Warp3D
Now works also on OS4 as a 68k program
New in v2.5: if LibBase in A6 is lost then try to find it again with
GetTaskLibBase();
New in v2.4: StormMesa2010-Prefs is now OS-friendly 
New in v2.3: Mipmapping is fixed (was crashing in Cube). Default setting is
LOCKMODE2 + VERYFAST so faster
New in v2.2: Option "Use DrawArrray"
StormMesa2010 2.1b reworked sources :
This was an attempt to recompile the old StormMesa with GCC
This was very difficult and we are not sure that this version is better or
usefull...
Sources changes & testing :  Alain THELLIER - 'Wawa' TOKARSKI - Bernd ROESCH -
'Kas1e' - Matt HEY - Philippe BOVIER
This is juste an update so see old StormMesa archives for more informations   
                                                                              
LICENSE
=======
StormMESA V3.1 
A freeware (GNU) 3D graphics library for 68K AMIGA's 
Almost completely OpenGL compatible 
Based on MESA V3.0 beta 8 by Brian Paul 
Based on AMESA V1.6 by Stefan Zivkovic 
StormMESA V3.0 is presented by HAAGE & PARTNER Computer Gmbh 
StormMESA V3.0 implementation maintained by Sam Jordan - 10.12.98

MOST IMPORTANT FEATURES
======================= 
o Now StormMesa sources can be recompiled with a standard GCC
o Old StormMesa binary compatibility
o Perhaps will works better now for some Warp3D-drivers 
                                                 
INSTALLATION 
============
copy agl.library TO LIBS:agl.library 

STORMMESA 2010 SPECIFICITY
==========================
We describe here how StormMesa sources were modified to be recompiled

1) MultiBase library
StormMesa never give the current GLcontext as a parameter
In fact there is a GLcontext per GL task
But Amiga libraries only know the LibraryBase in a6
So we need to have a new LibraryBase for each new task
Each LibraryBase contain a current GLcontext and a current Task
It give a LibraryBase chained list 
So for a given task we obtain a given LibraryBase that contain the current
GLcontext

	MyTask = FindTask(NULL);
	ThisBase=FirstBase;
	while(ThisBase!=NULL)
	{
	if(ThisBase->Task==MyTask)
		return(ThisBase);

	ThisBase=ThisBase->ChildBase;
	}

When OpenGL is started the current GLcontext is stored in the current
LibraryBase
So when a library function is called
void glPointSize( GLfloat size )		
{		
	GET_CONTEXT;
	PointSize(CC,size);
}

The GET_CONTEXT macro recover the current GLcontext 
It do LibraryBase=a6; then CC=LibraryBase->CurrentContext;

2) Standardized glue-functions
We removed all the compiler specific part inside the glue-functions in glapi.c
So we defined registers like this
#define FP0(var) register var	__asm("fp0")

and the glue functions like this one

void smglPointSize(GLfloat a)
{
FP0(GLfloat size);
glPointSize(size);
}

That give
void smglPointSize(GLfloat a)
{
register size __asm("fp0")
glPointSize(size);
}
So the "a" parameter is only a dummy one that allow the compiler to check the
arguments 
and the real parameter "size" is directly read in the register fp0 in the Amiga
way

3) StormMesa-Prefs
No more env/vars
Now there is a Gui to change the StormMesa settings

GCC OPTIONS FOR RECOMPILATION
=============================
We describe here the parameters to recompile the agl.library

CODEGEN = -m68020-40 -m68881 -noixemul

OPTIMIZATION = -O3

OPTIONS = -nostartfiles -w -DTHREADS -DAMIGA -DNOASM_68K -DNOASM_PPC -DDRIVEREXT

Warning: Most of those defines are already defined in the .h files

STORMMESA 1999 KNOWN BUGS
=========================
1)  a bug in stormesa's glut (found in 4dtris sources & wazp3d debugger) ==>
will need a fix

glutInit(&argc, argv);
[...]
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); 
glutCreateWindow("4D-TRIS"); 
[...]  
glutDisplayFunc(display); 
[...] 
glEnable(GL_DEPTH_TEST);

static void display(void)
{
[...]
 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); [...] }

The "display" call-back function do a clear zbuffer (=depth buffer) but zbuffer
is not enabled (yet) = no zbuffer at all 
Glut on other OS seems to handle that but StormMesa then try to fallback to
software-functions for zbuffer :-(((

Errors in StormMesa or Glut or MiniGL:
2) glExcess : glut dont understand "Game Mode" (=full scren) it begin to start
Wazp3D,create context,etc... ==> all works fine (no warp3d error) then glut
decide itself (?) to fail and close all =strange Especially strange as StormMesa
CAN do full-screen in other demos

3) 4Dtris: it dont use the hardware Zbuffer 
We see the error but we dont know yet where it happen in the StormMesa or Glut
sources 
Seems related to others Zbuffer bugs
It seems that sometime StormMesa lost itself

4) PointBlast: ground should have a texture (?)

5) Oreilly-Cube: often crash at startup

STORMMESA 2010 OTHER KNOWN BUGS
===============================
PointBlast: dont use Zbuffer

STORMMESA PREFS
===============
Four new options in StormMesa2010 :
"Enable Debugger" "Debug Function" "Step Function" "Change Primitive Funcs"

Enable Debugger:
Enables the output of messages. This is used for debugging of OpenGL programs.
(need to close StormMesa-Prefs to make it works)

Debug Function:
Print all the GL functions names

Step Function:
Step before all GL functions

Change Primitive Funcs:
Usually old StormMesa test (query) all the time the hardware  and then choose to
use
hardware or software for each Primitive Funcs. 
Defaut is Off : So StormMesa2010 just test & choose once for all  so can be
faster if the hardware can fully render the given program

Use DrawArray
If a GL program want to draw some GL_TRIANGLES then 
we use a fast call to W3D_DrawArray(context,W3D_PRIMITIVE_TRIANGLES,0,count);
So can speed up more when using Warp3D (or Wazp3D in hardware mode)
Badly there is not much existing GL programs that use GL_TRIANGLES
You can try it with starship (the gl one not starshipw3d) 
Glexcess  use draw GL_TRIANGLES only for the spaceship in the tunnel
This option still got bugs so the default is OFF

Other options were env/vars in the old StorMesa
Their old documentation is given again here

DIRECT:
Forces the application to run in 'direct render' mode,
even if the application attempted to run in the
'indirect render' mode. The use of 3D hardware is only
possible in 'direct render' mode.

NOHW:
Forces the graphics to be drawn by the CPU, the 3D
hardware is not touched.

SYNC:
Enforces synchronized refreshing of the graphics in window
mode. Since StormMesa 3.1 no synchronisation is done
by default in window mode.

TRIPLE:
Enables triple buffering. This leads for fast applications
to better performance in fullscreen mode and to a more
constant animation. The disadvantage is the much bigger
video memory usage.

NOCLAMP:
If this option is activated, then 'texture wrapping' is also used,
if the application wants to use 'texture clamping'. This option
should be used when a Virge 3D processor is used, because the
amount of demos capable of running 3D hardware accelerated grows
a lot.

NICETEX:
Cares, that the graphics quality concerning textures is as good as
possible, even if the overall graphics quality was reduced using
the variables FAST and VERYFAST.

NICEFOG:
Cares, that the graphics quality concerning fogging is as good as
possible, even if the overall graphics quality was reduced using
the variables FAST and VERYFAST.

NOHWLINES:
Forbids the use of 3D hardware rendering for line drawing.

LOCKMODE0:
Default. The graphics isn't drawn directly, an 'indirect context' of the
Warp3D software is used. The drawing operations are collected
in a buffer and drawn later, by enclosing such drawing operations
by an lock/unlock call.
This mode is the most system friendly mode and also works for
applications, that call system functions during OpenGL drawing
which might also cause graphical output.
The disadvantage of this mode is the low performance.

LOCKMODE1:
All objects are drawn directly and every begin-end-block is
enclosed by a lock/unlock call. This mode is right now useless,
since it's performance is very low due to massive lock/unlock
call overhead.

LOCKMODE2:
All objects are drawn directly and the lock is held during the
whole display function. This is the fastest mode, but very
system unfriendly, because it freezes the system very much.

LOCKMODE3:
This mode works very similar to mode 2, but here the lock is
broken in periodic intervals to let the system 'breathe air'.
Practice has shown, that the performance usually isn't
noticeable lower than for the mode 2, but the system
friendliness is much better.

FAST:
If this option is activated, the 3D hardware is also used when some
effects aren't supported completely by the hardware. But StormMesa
still tries to achieve an acceptable graphics quality.

VERYFAST:
If this option is activated, the 3D hardware is mostly used, but
the graphics quality might be unacceptable low.

STATS:
Some information is printed out into the shell after completion
of the application. First, the reasons are displayed, which were
responsible for not using the 3D hardware and second, the amount of
drawn primitives (points, lines, triangles, quads) are printed out.
If there is no statistical output after completion of the application,
then some of the mentioned conditions, which are necessary for 3D
hardware support, are not satisfied.

PROFILE:
Not documented

NORASTER:
Not documented

NODITHER:
Not documented

NOZB:
Not documented

NOZBU:
Not documented

LIN:
Not documented






Contents of util/libs/StormMesa2010.lha
PERMISSION  UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP     NAME
---------- ----------- ------- ------- ------ ---------- ------------ ----------
[unknown]               264494  715568  37.0% -lh5- 955f Sep 14  2012 StormMesa2010/agl.library
[unknown]               255059  681364  37.4% -lh5- f1ba Jun 22  2012 StormMesa2010/agl.library-old
[unknown]                41377  127792  32.4% -lh5- b097 Feb  4  1999 StormMesa2010/agle.library
[unknown]                24915   59388  42.0% -lh5- e5bf Feb  4  1999 StormMesa2010/aglsmap.library
[unknown]                47488  117900  40.3% -lh5- 28ed Feb  4  1999 StormMesa2010/aglu.library
[unknown]                82746  220628  37.5% -lh5- 562d Feb  4  1999 StormMesa2010/aglut.library
[unknown]                 2544    9934  25.6% -lh5- 0489 Nov  6  2009 StormMesa2010/sources/accum.c
[unknown]                  689    1341  51.4% -lh5- 797c Feb  4  1999 StormMesa2010/sources/accum.h
[unknown]                 7123   33109  21.5% -lh5- 188e Nov 27  2009 StormMesa2010/sources/ADisp_AGA.c
[unknown]                  301     891  33.8% -lh5- 4bcd Feb  4  1999 StormMesa2010/sources/ADisp_AGA.h
[unknown]                 5282   24554  21.5% -lh5- 51c2 Nov 29  2009 StormMesa2010/sources/ADisp_Cyb.c
[unknown]                  161     260  61.9% -lh5- 63df Feb  4  1999 StormMesa2010/sources/ADisp_Cyb.h
[unknown]                23192  143506  16.2% -lh5- ef33 Oct 24  2011 StormMesa2010/sources/ADisp_HW.c
[unknown]                 2329    8600  27.1% -lh5- bb2b Oct 11  2011 StormMesa2010/sources/ADisp_HW.h
[unknown]                 4998   52686   9.5% -lh5- b4c9 Dec 13  2010 StormMesa2010/sources/ADisp_HWRas.c
[unknown]                 5535   25289  21.9% -lh5- a51b Nov 27  2009 StormMesa2010/sources/ADisp_SW.c
[unknown]                  361    1276  28.3% -lh5- 849a Oct 18  2009 StormMesa2010/sources/ADisp_SW.h
[unknown]                14111  159544   8.8% -lh5- 13ca Nov 27  2009 StormMesa2010/sources/ADisp_SWFS.c
[unknown]                  955   15245   6.3% -lh5- 0f39 Feb  4  1999 StormMesa2010/sources/ADisp_SWFS.h
[unknown]                 4065   29172  13.9% -lh5- 2234 Feb  4  1999 StormMesa2010/sources/agl_lib_lib.h
[unknown]                 1245    3122  39.9% -lh5- 8d13 Nov 27  2009 StormMesa2010/sources/all.h
[unknown]                 1460    3534  41.3% -lh5- 2f3a Feb  4  1999 StormMesa2010/sources/alpha.c
[unknown]                  743    1340  55.4% -lh5- c80c Feb  4  1999 StormMesa2010/sources/alpha.h
[unknown]                 1777    5930  30.0% -lh5- 60aa Feb  4  1999 StormMesa2010/sources/alphabuf.c
[unknown]                  894    2584  34.6% -lh5- 46a8 Feb  4  1999 StormMesa2010/sources/alphabuf.h
[unknown]                  634    1547  41.0% -lh5- 255c Nov 30  2009 StormMesa2010/sources/Amiga-gcc-patched-functions.c
[unknown]                  650    1853  35.1% -lh5- 0361 Jan 25  2010 StormMesa2010/sources/AmigaIncludes.h
[unknown]                 5847   24694  23.7% -lh5- 8ce9 Jan 23  2012 StormMesa2010/sources/AmigaMesa.c
[unknown]                 6219   20704  30.0% -lh5- 9bfd Dec 30  2009 StormMesa2010/sources/AmigaMesa.h
[unknown]                  281    1056  26.6% -lh5- 50aa Jan 23  2012 StormMesa2010/sources/AmigaPrefs.h
[unknown]                 1860   12178  15.3% -lh5- 050c Jan  8  2010 StormMesa2010/sources/Amiga_functions_names.h
[unknown]                 5396   19835  27.2% -lh5- b915 Sep 14  2012 StormMesa2010/sources/Amiga_library.c
[unknown]                 2216    6844  32.4% -lh5- 3b58 Jun 22  2012 StormMesa2010/sources/Amiga_settings.c
[unknown]                 1211    2576  47.0% -lh5- aa3e Nov 30  2010 StormMesa2010/sources/api.h
[unknown]                 7270   46275  15.7% -lh5- 285f Nov 30  2010 StormMesa2010/sources/api1.c
[unknown]                 5007   39418  12.7% -lh5- 8e6d Dec  7  2010 StormMesa2010/sources/api2.c
[unknown]                 2732   23250  11.8% -lh5- 0454 Nov 30  2010 StormMesa2010/sources/apiext.c
[unknown]                  902    3991  22.6% -lh5- 42d0 Feb  4  1999 StormMesa2010/sources/asm_386.h
[unknown]                 1786    5288  33.8% -lh5- 29a3 Feb  4  1999 StormMesa2010/sources/asm_mmx.c
[unknown]                  665    1186  56.1% -lh5- 2fd2 Feb  4  1999 StormMesa2010/sources/asm_mmx.h
[unknown]                 4650   23208  20.0% -lh5- 0dd6 Feb  4  1999 StormMesa2010/sources/attrib.c
[unknown]                  658    1265  52.0% -lh5- fa7b Feb  4  1999 StormMesa2010/sources/attrib.h
[unknown]                 2703    8751  30.9% -lh5- c6de Nov 27  2009 StormMesa2010/sources/bitmap.c
[unknown]                  794    1763  45.0% -lh5- 3f85 Feb  4  1999 StormMesa2010/sources/bitmap.h
[unknown]                 4175   17935  23.3% -lh5- 8da7 Nov 27  2009 StormMesa2010/sources/blend.c
[unknown]                  766    1601  47.8% -lh5- d28a Feb  4  1999 StormMesa2010/sources/blend.h
[unknown]                 6592   31455  21.0% -lh5- bea9 Feb  4  1999 StormMesa2010/sources/clip.c
[unknown]                  998    2790  35.8% -lh5- 3079 Feb  4  1999 StormMesa2010/sources/clip.h
[unknown]                 2081    8408  24.8% -lh5- 0cb4 Feb  4  1999 StormMesa2010/sources/colortab.c
[unknown]                  755    1768  42.7% -lh5- 1bd7 Feb  4  1999 StormMesa2010/sources/colortab.h
[unknown]                 1842    4552  40.5% -lh5- 5d23 Dec 15  2010 StormMesa2010/sources/config.h
[unknown]                15278   59647  25.6% -lh5- a37f Dec 29  2009 StormMesa2010/sources/context.c
[unknown]                 1689    4452  37.9% -lh5- d01d Dec 28  2009 StormMesa2010/sources/context.h
[unknown]                 2912   11629  25.0% -lh5- c693 Feb  4  1999 StormMesa2010/sources/copypix.c
[unknown]                  672    1222  55.0% -lh5- 37e3 Feb  4  1999 StormMesa2010/sources/copypix.h
[unknown]                 5733   20151  28.5% -lh5- d6ea Feb  4  1999 StormMesa2010/sources/dd.h
[unknown]                 5028   23095  21.8% -lh5- 0889 Nov 24  2009 StormMesa2010/sources/ddsample.c
[unknown]                 3529   17890  19.7% -lh5- 2c81 Feb  4  1999 StormMesa2010/sources/depth.c
[unknown]                 1005    2956  34.0% -lh5- 84ee Feb  4  1999 StormMesa2010/sources/depth.h
[unknown]                17220   97090  17.7% -lh5- 39af Dec 28  2009 StormMesa2010/sources/dlist.c
[unknown]                 2878   16982  16.9% -lh5- c2b4 Feb  4  1999 StormMesa2010/sources/dlist.h
[unknown]                 6648   28495  23.3% -lh5- 7dfd Nov 27  2009 StormMesa2010/sources/drawpix.c
[unknown]                  748    1537  48.7% -lh5- 1ff7 Feb  4  1999 StormMesa2010/sources/drawpix.h
[unknown]                 3399   17328  19.6% -lh5- e50f Feb  4  1999 StormMesa2010/sources/enable.c
[unknown]                  668    1339  49.9% -lh5- 3753 Feb  4  1999 StormMesa2010/sources/enable.h
[unknown]                11086   73609  15.1% -lh5- dbde Feb  4  1999 StormMesa2010/sources/eval.c
[unknown]                  978    3540  27.6% -lh5- a76f Feb  4  1999 StormMesa2010/sources/eval.h
[unknown]                 2535   10453  24.3% -lh5- b0af Nov 27  2009 StormMesa2010/sources/feedback.c
[unknown]                  896    2081  43.1% -lh5- 5385 Feb  4  1999 StormMesa2010/sources/feedback.h
[unknown]                  894    1947  45.9% -lh5- 0c67 Feb  4  1999 StormMesa2010/sources/fixed.h
[unknown]                 2194   10131  21.7% -lh5- 23f5 Feb  4  1999 StormMesa2010/sources/fog.c
[unknown]                  747    1673  44.7% -lh5- 556d Feb  4  1999 StormMesa2010/sources/fog.h
[unknown]                18747  117220  16.0% -lh5- 4f57 Nov 27  2009 StormMesa2010/sources/get.c
[unknown]                  672    1336  50.3% -lh5- 6560 Feb  4  1999 StormMesa2010/sources/get.h
[unknown]                14288   79100  18.1% -lh5- 2c56 Feb 10  2010 StormMesa2010/sources/GL/gl.h
[unknown]                  248     533  46.5% -lh5- b9ff Nov 17  2002 StormMesa2010/sources/GL/gla.h
[unknown]                 2657    9466  28.1% -lh5- 6fee Dec 15  1998 StormMesa2010/sources/GL/glaux.h
[unknown]                 1517    5425  28.0% -lh5- 283d Dec 15  1998 StormMesa2010/sources/GL/glsmap.h
[unknown]                 2278    7948  28.7% -lh5- 6821 Dec 15  1998 StormMesa2010/sources/GL/gltk.h
[unknown]                 3909   15031  26.0% -lh5- 8a20 Dec 15  1998 StormMesa2010/sources/GL/glu.h
[unknown]                 5426   23130  23.5% -lh5- cb76 Feb  5  1999 StormMesa2010/sources/GL/glut.h
[unknown]                 2154    6209  34.7% -lh5- 2c8b Jun 18  1998 StormMesa2010/sources/GL/glx.h
[unknown]                  245     734  33.4% -lh5- 8225 Nov  2  2002 StormMesa2010/sources/GL/oscontext.h
[unknown]                 1956    9411  20.8% -lh5- 529e Dec 15  1998 StormMesa2010/sources/GL/tube.h
[unknown]                 8767   74463  11.8% -lh5- 1f85 Nov 30  2010 StormMesa2010/sources/glapi.c
[unknown]                  418    1353  30.9% -lh5- 0023 Jan 13  2010 StormMesa2010/sources/gllib.c
[unknown]                  193     349  55.3% -lh5- 2ee1 Nov 27  2009 StormMesa2010/sources/glsm.h
[unknown]                 4063   29168  13.9% -lh5- 283a Feb  4  1999 StormMesa2010/sources/gl_lib_lib.h
[unknown]                 2186    6565  33.3% -lh5- d132 Nov 27  2009 StormMesa2010/sources/hash.c
[unknown]                  732    1557  47.0% -lh5- 7ec2 Feb  4  1999 StormMesa2010/sources/hash.h
[unknown]                 1929    6909  27.9% -lh5- b4aa Nov 27  2009 StormMesa2010/sources/htnew_color.c
[unknown]                  326    1054  30.9% -lh5- 8bac Oct 18  2009 StormMesa2010/sources/htnew_color.h
[unknown]                 1888    5812  32.5% -lh5- 6fff Dec 15  2010 StormMesa2010/sources/HW_DrawTriangles.c
[unknown]                10361   79722  13.0% -lh5- 84c3 Nov 27  2009 StormMesa2010/sources/image.c
[unknown]                 1158    3459  33.5% -lh5- a9e5 Feb  4  1999 StormMesa2010/sources/image.h
[unknown]                 5560   27638  20.1% -lh5- 9bb7 Nov 27  2009 StormMesa2010/sources/light.c
[unknown]                  860    2409  35.7% -lh5- bfe5 Feb  4  1999 StormMesa2010/sources/light.h
[unknown]                 6223   44964  13.8% -lh5- f1ab Nov 27  2009 StormMesa2010/sources/lines.c
[unknown]                  664    1225  54.2% -lh5- fa95 Feb  4  1999 StormMesa2010/sources/lines.h
[unknown]                 3515   12407  28.3% -lh5- 7f8c Nov 27  2009 StormMesa2010/sources/linetemp.h
[unknown]                 2005    9257  21.7% -lh5- 6a2c Feb  4  1999 StormMesa2010/sources/logic.c
[unknown]                  749    1869  40.1% -lh5- f4e9 Feb  4  1999 StormMesa2010/sources/logic.h
[unknown]                 2538    7630  33.3% -lh5- c615 Nov 27  2009 StormMesa2010/sources/macros.h
[unknown]                 2812   41623   6.8% -lh5- 94ad Jun 22  2012 StormMesa2010/sources/Makefile
[unknown]                   31      31 100.0% -lh0- 8161 Aug  2  1995 StormMesa2010/sources/MakeProject
[unknown]                  331     583  56.8% -lh5- 2bf8 Jan 23  2012 StormMesa2010/sources/MakeProject.info
[unknown]                 1376    4144  33.2% -lh5- 2fe7 Feb  4  1999 StormMesa2010/sources/masking.c
[unknown]                  834    2173  38.4% -lh5- 7057 Feb  4  1999 StormMesa2010/sources/masking.h
[unknown]                 7418   29061  25.5% -lh5- ed4b Nov 27  2009 StormMesa2010/sources/matrix.c
[unknown]                  952    2674  35.6% -lh5- 16e1 Feb  4  1999 StormMesa2010/sources/matrix.h
[unknown]                 3626   14443  25.1% -lh5- 6911 Nov 27  2009 StormMesa2010/sources/misc.c
[unknown]                  752    1616  46.5% -lh5- ab3b Feb  4  1999 StormMesa2010/sources/misc.h
[unknown]                 1640    3649  44.9% -lh5- d258 Feb  4  1999 StormMesa2010/sources/mmath.c
[unknown]                 1514    3790  39.9% -lh5- aa11 Feb  4  1999 StormMesa2010/sources/mmath.h
[unknown]                 1913    5146  37.2% -lh5- 68b7 Nov 27  2009 StormMesa2010/sources/mthreads.c
[unknown]                 1850    4251  43.5% -lh5- 0d8d Feb  4  1999 StormMesa2010/sources/mthreads.h
[unknown]                  278     535  52.0% -lh5- 651d Jan 23  2012 StormMesa2010/sources/Options.info
[unknown]                 8274   45811  18.1% -lh5- c2b8 Feb  4  1999 StormMesa2010/sources/osmesa.c
[unknown]                 3139   13096  24.0% -lh5- 37b3 Feb 10  2010 StormMesa2010/sources/pb.c
[unknown]                 1592    4358  36.5% -lh5- 284e Feb  4  1999 StormMesa2010/sources/pb.h
[unknown]                 3950   23478  16.8% -lh5- b937 Nov 27  2009 StormMesa2010/sources/pixel.c
[unknown]                 1133    3674  30.8% -lh5- 5804 Feb  4  1999 StormMesa2010/sources/pixel.h
[unknown]                 4475   20284  22.1% -lh5- d8d5 Nov 27  2009 StormMesa2010/sources/pointers.c
[unknown]                  628    1107  56.7% -lh5- 5b3e Feb  4  1999 StormMesa2010/sources/pointers.h
[unknown]                 4797   27320  17.6% -lh5- c74d Feb  4  1999 StormMesa2010/sources/points.c
[unknown]                  682    1278  53.4% -lh5- 4cd1 Feb  4  1999 StormMesa2010/sources/points.h
[unknown]                 1387    4149  33.4% -lh5- 7661 Nov 27  2009 StormMesa2010/sources/polygon.c
[unknown]                  774    1590  48.7% -lh5- 1ca1 Feb  4  1999 StormMesa2010/sources/polygon.h
[unknown]                 1078    2380  45.3% -lh5- 4de2 Feb  4  1999 StormMesa2010/sources/quads.c
[unknown]                  618    1086  56.9% -lh5- 37ab Feb  4  1999 StormMesa2010/sources/quads.h
[unknown]                 2128    7230  29.4% -lh5- 845b Nov 27  2009 StormMesa2010/sources/rastpos.c
[unknown]                  660    1278  51.6% -lh5- cb04 Feb  4  1999 StormMesa2010/sources/rastpos.h
[unknown]                 6021   52368  11.5% -lh5- 7e67 Feb  4  1999 StormMesa2010/sources/readpix.c
[unknown]                  674    1234  54.6% -lh5- fe4a Feb  4  1999 StormMesa2010/sources/readpix.h
[unknown]                  900    1728  52.1% -lh5- 31ed Feb  4  1999 StormMesa2010/sources/rect.c
[unknown]                  632    1140  55.4% -lh5- 63da Feb  4  1999 StormMesa2010/sources/rect.h
[unknown]                 1279    2967  43.1% -lh5- 1e55 Feb  4  1999 StormMesa2010/sources/scissor.c
[unknown]                  713    1460  48.8% -lh5- 9bfd Feb  4  1999 StormMesa2010/sources/scissor.h
[unknown]                 5729   25232  22.7% -lh5- 354e Feb  4  1999 StormMesa2010/sources/shade.c
[unknown]                  835    2301  36.3% -lh5- c64c Feb  4  1999 StormMesa2010/sources/shade.h
[unknown]                 5356   32611  16.4% -lh5- 734e Nov 27  2009 StormMesa2010/sources/span.c
[unknown]                 1097    3666  29.9% -lh5- 2b55 Feb  4  1999 StormMesa2010/sources/span.h
[unknown]                 4735   24210  19.6% -lh5- 1ca6 Feb 10  2010 StormMesa2010/sources/stencil.c
[unknown]                  855    2386  35.8% -lh5- b045 Feb  4  1999 StormMesa2010/sources/stencil.h
[unknown]                11222   71906  15.6% -lh5- 8e65 Nov 27  2009 StormMesa2010/sources/teximage.c
[unknown]                 1193    6840  17.4% -lh5- 4e6e Feb  4  1999 StormMesa2010/sources/teximage.h
[unknown]                 4194   18376  22.8% -lh5- 6772 Nov 27  2009 StormMesa2010/sources/texobj.c
[unknown]                  868    2192  39.6% -lh5- 7f1a Feb  4  1999 StormMesa2010/sources/texobj.h
[unknown]                 4801   33426  14.4% -lh5- c7ee Nov 27  2009 StormMesa2010/sources/texstate.c
[unknown]                 1009    3447  29.3% -lh5- d85e Feb  4  1999 StormMesa2010/sources/texstate.h
[unknown]                11447   71679  16.0% -lh5- 9f9f Feb  4  1999 StormMesa2010/sources/texture.c
[unknown]                  834    1756  47.5% -lh5- 9124 Feb  4  1999 StormMesa2010/sources/texture.h
[unknown]                11406   87324  13.1% -lh5- a8ba Nov 27  2009 StormMesa2010/sources/triangle.c
[unknown]                  627    1105  56.7% -lh5- 5102 Nov 27  2009 StormMesa2010/sources/triangle.h
[unknown]                 8915   36647  24.3% -lh5- 7277 Nov 27  2009 StormMesa2010/sources/tritemp.h
[unknown]                13721   58859  23.3% -lh5- 087a Nov 25  2009 StormMesa2010/sources/types.h
[unknown]                 6912   47413  14.6% -lh5- 0bcc Nov 30  2010 StormMesa2010/sources/varray.c
[unknown]                 1095    4146  26.4% -lh5- 73ca Feb  4  1999 StormMesa2010/sources/varray.h
[unknown]                  983    1986  49.5% -lh5- 444d Feb  4  1999 StormMesa2010/sources/vb.c
[unknown]                 1862    4428  42.1% -lh5- 32d0 Feb  4  1999 StormMesa2010/sources/vb.h
[unknown]                 5343   36561  14.6% -lh5- 7152 Oct 10  2011 StormMesa2010/sources/vbfill.c
[unknown]                 1084    3837  28.3% -lh5- 6378 Feb  4  1999 StormMesa2010/sources/vbfill.h
[unknown]                 9252   51921  17.8% -lh5- edd4 Feb  2  2011 StormMesa2010/sources/vbrender.c
[unknown]                  640    1172  54.6% -lh5- c160 Feb  4  1999 StormMesa2010/sources/vbrender.h
[unknown]                 9108   47445  19.2% -lh5- f156 Nov 23  2009 StormMesa2010/sources/vbxform.c
[unknown]                  632    1166  54.2% -lh5- 8a01 Feb  4  1999 StormMesa2010/sources/vbxform.h
[unknown]                 1338    2976  45.0% -lh5- 8898 Feb  4  1999 StormMesa2010/sources/winpos.c
[unknown]                  789    2258  34.9% -lh5- f79c Feb  4  1999 StormMesa2010/sources/winpos.h
[unknown]                 3279   16538  19.8% -lh5- 988c Nov  7  2009 StormMesa2010/sources/xform.c
[unknown]                 1025    2388  42.9% -lh5- 1381 Nov  7  2009 StormMesa2010/sources/xform.h
[unknown]                 1996   10525  19.0% -lh5- 47da Nov 27  2009 StormMesa2010/sources/zoom.c
[unknown]                  816    1982  41.2% -lh5- f1de Feb  4  1999 StormMesa2010/sources/zoom.h
[unknown]                  506     952  53.2% -lh5- 1083 Nov 30  2009 StormMesa2010/StormMesa-Prefs-src/Makefile
[unknown]                   31      31 100.0% -lh0- 8161 Aug  2  1995 StormMesa2010/StormMesa-Prefs-src/MakeProject
[unknown]                  334     583  57.3% -lh5- fc40 Feb  2  2011 StormMesa2010/StormMesa-Prefs-src/MakeProject.info
[unknown]                  301     597  50.4% -lh5- 484a Oct 28  2009 StormMesa2010/StormMesa-Prefs-src/Options.info
[unknown]                  272     478  56.9% -lh5- 1a49 Jan 23  2012 StormMesa2010/StormMesa-Prefs-src/StormMesa-Prefs.c
[unknown]                 2069    3632  57.0% -lh5- d26e Jan 23  2012 StormMesa2010/StormMesa2010-Prefs
[unknown]                  802    1203  66.7% -lh5- 35d3 Jan 23  2012 StormMesa2010/StormMesa2010-Prefs.info
[unknown]                 4372   10139  43.1% -lh5- c3ed Jun 22  2012 StormMesa2010/StormMesa2010.readme
[unknown]                  220     468  47.0% -lh5- 4c19 Apr 30  2010 StormMesa2010/StormMesa2010.readme.info
---------- ----------- ------- ------- ------ ---------- ------------ ----------
 Total       181 files 1272269 4830871  26.3%            Apr 19 06:18

Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>