File: ChangeLog.glide3x

package info (click to toggle)
glide 2002.04.10ds1-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 58,716 kB
  • sloc: ansic: 290,120; asm: 23,271; sh: 8,117; pascal: 3,854; makefile: 1,300; perl: 168
file content (1004 lines) | stat: -rw-r--r-- 40,905 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
2001-01-08 12:14  billwhite

	* configure.in, h5/glide3/src/gglide.c, h5/minihwc/linhwc.c: This
	is part of what we need to get SLI working.  It is not complete
	yet.

2000-12-13 22:54  billwhite

	* h5/glide3/src/: diget.c, distate.c, fifo.c, fxglide.h, gglide.c,
	glfb.c, gsst.c, gtex.c: Some changes to make Glide use no more
	chips than X tells it to.

2000-12-06 22:19  billwhite

	* h3/minihwc/minihwc.h, h5/glide3/src/fxcmd.h,
	h5/glide3/src/glide.h, h5/glide3/src/gsst.c, h5/minihwc/linhwc.c:
	Fixed some bugs in linhwc.c, and added some related definitions. 
	Note: Even with these fixes, SLI and AA do not work properly, but  
	    we are epsilon closer.

2000-11-27 15:45  billwhite

	* chores.3dfx, h5/glide3/src/cpudtect.s, h5/glide3/src/diget.c,
	h5/glide3/src/fifo.c, h5/glide3/src/gglide.c, h5/glide3/src/glfb.c,
	h5/glide3/src/gsst.c, h5/glide3/src/makefile.linux,
	h5/glide3/src/xdraw2.inc.s, h5/glide3/src/xdraw2.s,
	h5/glide3/src/xtexdl.s, h5/incsrc/h3defs.h, h5/minihwc/lindri.h,
	h5/minihwc/linhwc.c, h5/minihwc/minihwc.c: Added some fixes to
	enable SLI and AA.  This does not work yet, but at least we have it
	in a controlled form, so that we can work on it.

2000-11-24 13:38  alanh

	* h5/glide3/src/distate.c, h5/glide3/src/fxglide.h,
	h5/glide3/src/gglide.c, h3/glide3/src/distate.c,
	h3/glide3/src/fxglide.h, h3/glide3/src/gglide.c.dri,
	h3/glide3/src/glide.h, h5/glide3/src/glide.h: Add new grStippleMode
	and grStipplePattern functions for Voodoo3 and Voodoo5.

2000-11-24 13:36  alanh

	* h5/glide3/src/distate.c, h5/glide3/src/fxglide.h,
	h5/glide3/src/gglide.c, h5/glide3/src/glide.h,
	h3/glide3/src/distate.c, h3/glide3/src/fxglide.h,
	h3/glide3/src/gglide.c.dri, h3/glide3/src/glide.h: Add new
	grStippleMode and grStipplePattern functions for both Voodoo3 and
	Voodoo5 hardware.

2000-11-20 11:30  alanh

	* h3/glide3/src/gdraw.c, h5/glide3/src/gdraw.c: cast &ADY and &DX
	to int* instead of long*

2000-11-20 11:17  alanh

	* h5/glide3/src/glfb.c: update new grLfbReadRegion for 64bit.

2000-11-18 11:00  alanh

	* README, configure.in, cvg/glide3/src/makefile.autoconf.am,
	cvg/init/sst1init.h, h5/glide3/src/cpudtect.lst,
	h5/glide3/src/diget.c, h5/glide3/src/diglide.c,
	h5/glide3/src/disst.c, h5/glide3/src/distate.c,
	h5/glide3/src/distrip.c, h5/glide3/src/ditex.c,
	h5/glide3/src/fifo.c, h5/glide3/src/fxbldno.c,
	h5/glide3/src/fxcmd.h, h5/glide3/src/fxgasm.c,
	h5/glide3/src/fxsplash.h, h5/glide3/src/g3df.c,
	h5/glide3/src/gaa.c, h5/glide3/src/gbanner.c,
	h5/glide3/src/gdraw.c, h5/glide3/src/gerror.c,
	h5/glide3/src/gglide.c, h5/glide3/src/glfb.c,
	h5/glide3/src/glidesys.h, h5/glide3/src/glideutl.h,
	h5/glide3/src/gpci.c, h5/glide3/src/gsfc.c, h5/glide3/src/gsfc.h,
	h5/glide3/src/gsplash.c, h5/glide3/src/gsst.c,
	h5/glide3/src/gsstdef.h, h5/glide3/src/gstrip.c,
	h5/glide3/src/gstrip_ppc.c, h5/glide3/src/gtex.c,
	h5/glide3/src/gtexdl.c, h5/glide3/src/gthread.c,
	h5/glide3/src/gu.c, h5/glide3/src/gxdraw.c,
	h5/glide3/src/gxdraw_ppc.c, h5/glide3/src/makefile.autoconf.am,
	h5/glide3/src/qmodes.h, h5/glide3/src/tv.h,
	h5/glide3/src/xdraw2.inc.s, h5/glide3/src/xdraw2.lst,
	h5/glide3/src/xdraw2.s, h5/glide3/src/xtexdl.lst,
	h5/glide3/src/xtexdl.s, h5/glide3/src/xtexdl_def.c,
	h5/incsrc/fxhal.h, h5/incsrc/fxvid.h, h5/incsrc/gdebug.h,
	h5/incsrc/h3.h, h5/incsrc/h3cinit.h, h5/incsrc/h3defs.h,
	h5/incsrc/h3gdefs.h, h5/incsrc/h3hwc.h, h5/incsrc/h3info.h,
	h5/incsrc/h3regs.h, h5/incsrc/sst1vid.h, h5/incsrc/vector.h,
	h5/incsrc/vxd.h, h5/minihwc/dos_mode.c, h5/minihwc/dxdrvr.c,
	h5/minihwc/fxhwc.h, h5/minihwc/gdebug.c, h5/minihwc/hwcio.c,
	h5/minihwc/hwcio.h, h5/minihwc/initvga.h, h5/minihwc/linhwc.c,
	h5/minihwc/minihwc.c, h5/minihwc/qmodes.h, h5/minihwc/tv.h:
	hopefully bring everything in line now.

2000-11-18 09:37  alanh

	* h5/glide3/src/: cpudtect.s, glfb.c, gsst.c, makefile.linux,
	xdraw2.inc.s, xdraw2.s, xtexdl.s: merge trunk into 64bit branch.

2000-11-18 09:22  alanh

	* h5/minihwc/linhwc.c: merge in trunk.

2000-11-17 16:31  joseph

	* h5/: glide3/src/cpudtect.s, glide3/src/glfb.c, glide3/src/gsst.c,
	glide3/src/makefile.linux, glide3/src/xdraw2.inc.s,
	glide3/src/xdraw2.s, glide3/src/xtexdl.s, minihwc/linhwc.c:
	Restored changes that were lost when I imported new sources from
	3dfx's internal source repository.

2000-11-17 10:29  alanh

	* h5/glide3/src/glfb.c: sync with trunk

2000-11-17 06:29  alanh

	* h5/glide3/src/gglide.c: [no log message]

2000-11-17 06:29  alanh

	* h5/glide3/src/gglide.c: fix a __linux__ reversal problem when
	Joseph imported the 3dfx tree.

2000-11-16 15:25  alanh

	* h3/glide3/src/: gglide.c.dri, gglide.c.dri: fix a typo

2000-11-16 15:22  alanh

	* h5/glide3/src/gsst.c: fix a regression problem from the import of
	the trunk.

2000-11-16 15:01  alanh

	* h5/: glide3/src/cpudtect.lst, glide3/src/cpudtect.s,
	glide3/src/diget.c, glide3/src/diglide.c, glide3/src/disst.c,
	glide3/src/distate.c, glide3/src/distrip.c, glide3/src/ditex.c,
	glide3/src/fifo.c, glide3/src/fxbldno.c, glide3/src/fxcmd.h,
	glide3/src/fxgasm.c, glide3/src/fxsplash.h, glide3/src/g3df.c,
	glide3/src/gaa.c, glide3/src/gbanner.c, glide3/src/gdraw.c,
	glide3/src/gerror.c, glide3/src/gglide.c, glide3/src/glfb.c,
	glide3/src/glidesys.h, glide3/src/glideutl.h, glide3/src/gpci.c,
	glide3/src/gsfc.c, glide3/src/gsfc.h, glide3/src/gsplash.c,
	glide3/src/gsst.c, glide3/src/gsstdef.h, glide3/src/gstrip.c,
	glide3/src/gstrip_ppc.c, glide3/src/gtex.c, glide3/src/gtexdl.c,
	glide3/src/gthread.c, glide3/src/gu.c, glide3/src/gxdraw.c,
	glide3/src/gxdraw_ppc.c, glide3/src/makefile.autoconf.am,
	glide3/src/makefile.linux, glide3/src/qmodes.h, glide3/src/tv.h,
	glide3/src/xdraw2.inc.s, glide3/src/xdraw2.lst,
	glide3/src/xdraw2.s, glide3/src/xtexdl.lst, glide3/src/xtexdl.s,
	glide3/src/xtexdl_def.c, minihwc/dos_mode.c, minihwc/dxdrvr.c,
	minihwc/fxhwc.h, minihwc/gdebug.c, minihwc/hwcio.c,
	minihwc/hwcio.h, minihwc/initvga.h, minihwc/minihwc.c,
	minihwc/qmodes.h, minihwc/tv.h: merge trunk into 64bit branch.

2000-11-16 15:00  alanh

	* h3/glide3/tests/: test17.c, test30.c: merge trunk onto 64bit
	branch.

2000-11-16 14:54  alanh

	* cvg/init/sst1init.h: merge trunk into 64bit branch.

2000-11-16 14:45  alanh

	* h5/incsrc/: fxhal.h, fxvid.h, gdebug.h, h3.h, h3cinit.h,
	h3defs.h, h3gdefs.h, h3hwc.h, h3info.h, h3regs.h, sst1vid.h,
	vector.h, vxd.h: merge trunk into 64bit branch.

2000-11-16 14:38  alanh

	* cvg/glide3/tests/: test17.c, test30.c: merge trunk into 64bit
	branch.

2000-11-16 14:32  alanh

	* h5/glide3/src/: cpudtect.lst, cpudtect.s, diget.c, diglide.c,
	disst.c, distate.c, distrip.c, ditex.c, fifo.c, fxbldno.c, fxcmd.h,
	fxgasm.c, fxglide.h, fxsplash.h, g3df.c, g3ext.h, gaa.c, gbanner.c,
	gdraw.c, gerror.c, gglide.c, glfb.c, glide.h, glidesys.h,
	glideutl.h, gpci.c, gsfc.c, gsfc.h, gsplash.c, gsst.c, gsstdef.h,
	gstrip.c, gstrip_ppc.c, gtex.c, gtexdl.c, gthread.c, gu.c,
	gxdraw.c, gxdraw_ppc.c, makefile.autoconf.am, makefile.linux,
	ppcdraw2.s, qmodes.h, rcver.h, tv.h, xdraw2.inc.s, xdraw2.lst,
	xdraw2.s, xdraw3.asm, xdraw3.lst, xtexdl.lst, xtexdl.s,
	xtexdl_def.c: merge trunk into 64bit branch.

2000-11-16 14:26  joseph

	* cvg/glide3/tests/test17.c, cvg/glide3/tests/test30.c,
	cvg/init/sst1init.h, h3/glide3/tests/test17.c,
	h3/glide3/tests/test30.c, h5/glide3/src/diget.c,
	h5/glide3/src/fifo.c, h5/minihwc/minihwc.c: Removed proprietary
	copyright message and replaced with Glide General Public License
	copyright message.

2000-11-16 14:21  joseph

	* h5/incsrc/h3defs.h: Fixed copyright message.

2000-11-16 14:04  alanh

	* h5/incsrc/: fxhal.h, fxvid.h, gdebug.h, h3.h, h3cinit.h,
	h3defs.h, h3gdefs.h, h3hwc.h, h3info.h, h3regs.h, makefile.linux,
	sst1vid.h, vector.h, vxd.h: merge trunk into 64bit branch.

2000-11-16 14:02  alanh

	* h5/minihwc/: dos_mode.c, dxdrvr.c, fxhwc.h, gdebug.c, hwcext.h,
	hwcio.c, hwcio.h, initvga.h, linhwc.c, mac_mode.c, makefile.linux,
	minihwc.c, minihwc.h, qmodes.h, setmode.h, tv.h: merge trunk in
	64bit branch.

2000-11-16 13:58  alanh

	* h3/glide3/src/gglide.c.dri, h5/glide3/src/gglide.c: add linux
	specific grRenderBuffer to fix problems switching between FRONT and
	BACK buffers.

2000-11-16 13:56  alanh

	* h3/glide3/src/gglide.c.dri, h5/glide3/src/gglide.c: add a linux
	specific grRenderBuffer to fix switching between FRONT and BACK
	buffers.

2000-11-15 18:32  joseph

	* h5/: glide3/src/cpudtect.lst, glide3/src/cpudtect.s,
	glide3/src/diget.c, glide3/src/diglide.c, glide3/src/disst.c,
	glide3/src/distate.c, glide3/src/distrip.c, glide3/src/ditex.c,
	glide3/src/fifo.c, glide3/src/fxbldno.c, glide3/src/fxcmd.h,
	glide3/src/fxgasm.c, glide3/src/fxglide.h, glide3/src/fxsplash.h,
	glide3/src/g3df.c, glide3/src/g3ext.h, glide3/src/gaa.c,
	glide3/src/gbanner.c, glide3/src/gdraw.c, glide3/src/gerror.c,
	glide3/src/gglide.c, glide3/src/glfb.c, glide3/src/glide.h,
	glide3/src/glidesys.h, glide3/src/glideutl.h, glide3/src/gpci.c,
	glide3/src/gsfc.c, glide3/src/gsfc.h, glide3/src/gsplash.c,
	glide3/src/gsst.c, glide3/src/gsstdef.h, glide3/src/gstrip.c,
	glide3/src/gstrip_ppc.c, glide3/src/gtex.c, glide3/src/gtexdl.c,
	glide3/src/gthread.c, glide3/src/gu.c, glide3/src/gxdraw.c,
	glide3/src/gxdraw_ppc.c, glide3/src/makefile.linux,
	glide3/src/ppcdraw2.s, glide3/src/qmodes.h, glide3/src/rcver.h,
	glide3/src/tv.h, glide3/src/xdraw2.inc.s, glide3/src/xdraw2.lst,
	glide3/src/xdraw2.s, glide3/src/xdraw3.asm, glide3/src/xdraw3.lst,
	glide3/src/xtexdl.lst, glide3/src/xtexdl.s,
	glide3/src/xtexdl_def.c, incsrc/fxhal.h, incsrc/fxvid.h,
	incsrc/gdebug.h, incsrc/h3.h, incsrc/h3cinit.h, incsrc/h3defs.h,
	incsrc/h3gdefs.h, incsrc/h3hwc.h, incsrc/h3info.h, incsrc/h3regs.h,
	incsrc/makefile.linux, incsrc/sst1vid.h, incsrc/vector.h,
	incsrc/vxd.h, minihwc/dos_mode.c, minihwc/dxdrvr.c,
	minihwc/fxhwc.h, minihwc/gdebug.c, minihwc/hwcext.h,
	minihwc/hwcio.c, minihwc/hwcio.h, minihwc/initvga.h,
	minihwc/linhwc.c, minihwc/mac_mode.c, minihwc/makefile.linux,
	minihwc/minihwc.c, minihwc/minihwc.h, minihwc/qmodes.h,
	minihwc/setmode.h, minihwc/tv.h: Syncing up with 3dfx internal
	source repository.  These changes contain a number of bug fixes.

2000-11-15 13:34  mercury

	* README: Testing cvs commit messages, again.

2000-11-14 22:57  mercury

	* README: Testing CVS commit messages, joy.

2000-11-14 13:22  mercury

	* README: Removed the blank line at the end.  (Really just a test
	of CVS commit logs.)

2000-11-14 09:11  alanh

	* chores.3dfx, configure.in, ltconfig, ltmain.sh,
	cvg/glide3/src/makefile.autoconf.am, h3/glide3/src/gglide.c.dri,
	h3/glide3/src/xdraw2.inc.S, h3/glide3/src/xdraw3.S,
	h5/glide3/src/glfb.c, h5/glide3/src/makefile.autoconf.am,
	h5/glide3/src/xdraw2.inc.s, h5/glide3/src/xdraw3.s: merge in trunk
	updates, fixup pci code, and fix texus2 code pointers.

2000-11-13 21:25  joseph

	* README, README: Testing broken commit messages

2000-11-13 13:10  mercury

	* ltmain.sh: Oops, updated ltconfig, but not ltmain.sh, fixed now.

2000-11-03 06:23  mercury

	* chores.3dfx: 
	Converted 'function xyz() { ...; }' to 'xyz() { ...; }'.  (The
	first is a bashism, the latter is POSIX sh.)

2000-11-03 00:31  mercury

	* ltconfig: New libtool version, fixes some compile issues.

2000-11-02 05:27  alanh

	* h3/glide3/src/gaa.c, h3/glide3/src/gdraw.c,
	h3/glide3/src/gstrip.c, h5/glide3/src/gaa.c, h5/glide3/src/gdraw.c,
	h5/glide3/src/gstrip.c, h5/glide3/src/gstrip_ppc.c: Commit some of
	Dave Mosberger's code:
	
	If mode is not zero, initialize "stride" to the number of floats
	that corresponds to the size of a pointer (1 on a 32-bit platform,
	2 on a 64-bit platform).  This code works properly as long as
	sizeof(void*)==N*sizeof(float) for some integer constant N.

2000-10-30 22:25  joseph

	* cvg/glide3/src/makefile.autoconf.am,
	h5/glide3/src/makefile.autoconf.am: Fixed typo cpudtct.lo -->
	cpudtect.lo that was causing the wrong ASM build rule to be
	executed for cpudtect.s

2000-10-27 07:20  alanh

	* h3/: glide3/src/makefile.autoconf.am, minihwc/linhwc.c.dri: Fix
	depth offset problem on v3 Fix ix86 build problem

2000-10-27 06:27  alanh

	* h3/minihwc/linhwc.c.dri: fix depth buffer offset calculation.

2000-10-27 03:54  alanh

	* h3/glide3/src/gglide.c.dri: fix readPtr0/1 -> depth0/1 check

2000-10-20 15:07  billwhite

	* configure.in, h3/glide3/src/xdraw2.inc.S, h3/glide3/src/xdraw3.S,
	h5/glide3/src/makefile.autoconf.am, h5/glide3/src/xdraw2.inc.s,
	h5/glide3/src/xdraw3.s: 1.) Added changes for AMD 3DNow
	instructions in h5/glide3 and	  h3/glide3.  2.) Fixed a
	typographical error in configure.in.  The default     texture
	utility library is texus2, not texus.

2000-10-03 04:18  alanh

	* chores.3dfx, h3/glide3/src/fxglide.h, h3/minihwc/linhwc.c.dri,
	h5/glide3/src/fxglide.h, h5/glide3/src/glfb.c,
	h5/glide3/src/makefile.autoconf.am, h5/glide3/src/makefile.linux,
	h5/glide3/src/xtexdl_def.c, h5/minihwc/linhwc.c: merge trunk into
	Glide3-64bit branch.

2000-09-25 14:41  billwhite

	* chores.3dfx, h5/glide3/src/makefile.autoconf.am: 1.) use mkdir -p
	to build the build directory in chores.3dfx.  2.) change some
	macros in makefile.autoconf.am to put glide in	   libglide3 not
	libglide3x.

2000-09-24 18:59  joseph

	* h5/glide3/src/makefile.autoconf.am: Changed library name from
	libglide3x to libglide3

2000-09-24 18:58  joseph

	* h5/glide3/src/makefile.linux: set library name to libglide3
	instead of libglide3x

2000-09-14 04:05  alanh

	* h5/glide3/src/glfb.c: fix for stride width at <=1024 resolutions

2000-09-13 21:58  billwhite

	* h5/glide3/src/glfb.c: Correctly compute the LFB strides in
	grLfbLock.

2000-09-07 11:29  alanh

	* h3/glide3/src/fxcmd.h: fix white space

2000-09-07 11:27  alanh

	* configure.in: IA64 patch to switch to C versions of TRI Setup

2000-09-07 11:14  alanh

	* h5/glide3/src/fxcmd.h: remove white spaces

2000-08-30 04:47  alanh

	* h3/: glide3/src/cpudtect.S, glide3/src/cpudtect.c,
	glide3/src/diget.c, glide3/src/disst.c, glide3/src/distrip.c,
	glide3/src/fifo.c, glide3/src/fxcmd.h, glide3/src/fxglide.h,
	glide3/src/g3df.c, glide3/src/gaa.c, glide3/src/gdraw.c,
	glide3/src/gerror.c, glide3/src/gglide.c.dri,
	glide3/src/glfb.c.dri, glide3/src/glide.h, glide3/src/gpci.c,
	glide3/src/gsst.c.dri, glide3/src/gtexdl.c, glide3/src/gthread.c,
	glide3/src/makefile.autoconf.am, glide3/src/xtexdl_def.c,
	incsrc/fxhal.h, incsrc/h3defs.h, incsrc/h3regs.h, minihwc/hwcext.h,
	minihwc/hwcio.h, minihwc/linhwc.c.dri, minihwc/minihwc.c,
	minihwc/minihwc.h: Changes for Voodoo3 for 64bit architectures

2000-08-30 04:47  alanh

	* h3/glide3/src/cpudtect.c: file cpudtect.c was initially added on
	branch Glide3-64bit.

2000-08-30 04:37  alanh

	* h5/glide3/src/cpudtect.c: file cpudtect.c was initially added on
	branch Glide3-64bit.

2000-08-30 04:37  alanh

	* h5/: glide3/src/cpudtect.c, glide3/src/cpudtect.s,
	glide3/src/diget.c, glide3/src/disst.c, glide3/src/distrip.c,
	glide3/src/fifo.c, glide3/src/fxcmd.h, glide3/src/fxglide.h,
	glide3/src/gaa.c, glide3/src/gdraw.c, glide3/src/gerror.c,
	glide3/src/gglide.c, glide3/src/glfb.c, glide3/src/glide.h,
	glide3/src/gpci.c, glide3/src/gsst.c, glide3/src/gstrip.c,
	glide3/src/gtexdl.c, glide3/src/gthread.c,
	glide3/src/makefile.autoconf.am, glide3/src/makefile.linux,
	glide3/src/xtexdl_def.c, incsrc/fxhal.h, incsrc/h3defs.h,
	incsrc/h3regs.h, minihwc/hwcext.h, minihwc/hwcio.h,
	minihwc/linhwc.c, minihwc/minihwc.c, minihwc/minihwc.h: Voodoo5
	changes for 64bit architectures

2000-08-30 04:26  alanh

	* configure.in: swlibs patches for 64bit issues.

2000-08-25 13:33  billwhite

	* configure.in, h5/glide3/src/makefile.autoconf.am: Some small
	build related changes to make the texus2 library the default.

2000-08-21 15:10  billwhite

	* build.3dfx.in: Fixed a syntax error.

2000-08-21 14:16  billwhite

	* configure.in: Fixed a bug in the definition of the
	--enable-build-architecture option.

2000-08-21 09:48  billwhite

	* INSTALL, chores.3dfx, configure.in: Added a new configuration
	option, --enable-build-architecture, for selecting the build
	architecture.	   configure.in:   Add the configuration option.   
	  INSTALL:	  Documented it.      chores.3dfx:    Make it
	selectable easily from this script.

2000-08-07 11:24  billwhite

	* .cvsignore, ChangeLog, INSTALL, chores.3dfx, configure.in,
	libtool, cvg/.cvsignore, cvg/glide3/.cvsignore,
	cvg/glide3/src/.cvsignore, cvg/incsrc/.cvsignore,
	cvg/init/.cvsignore, h3/.cvsignore, h3/glide3/.cvsignore,
	h3/glide3/src/.cvsignore, h3/incsrc/.cvsignore,
	h3/minihwc/.cvsignore, h5/.cvsignore, h5/glide3/.cvsignore,
	h5/glide3/src/.cvsignore, h5/glide3/src/makefile.autoconf.am,
	h5/glide3/tests/.cvsignore, h5/glide3/tests/alpha.3df,
	h5/glide3/tests/decal1.3df, h5/glide3/tests/lava.3df,
	h5/glide3/tests/matt1.3df, h5/glide3/tests/miro.3df,
	h5/glide3/tests/t256x32.3df, h5/glide3/tests/t512x32.3df,
	h5/incsrc/.cvsignore, h5/minihwc/.cvsignore: 1.) Added a dependence
	to h5/glide3/src/makefile.autoconf.am, so that	   gthread.lo is
	made for fxgasm even though it is not used.	 Otherwise,
	everything has to be compiled twice.  2.) Added lots of .cvsignore
	files, so that cvs doesn't complain that     it doesn't know about
	makefile.autoconf.in.  3.) Remove libtool, since it is
	autogenerated.	4.) Update the binary files in h5/glide3/tests. 
	The repository files	 were corrupted.  5.) Hook the texture
	utility library texus2 in as an option.  This is     required for
	compressed textures.  The default is the old texture	 library. 
	6.) Implemented a texus2 function which sets an error handler.

2000-08-01 19:23  billwhite

	* ChangeLog, chores.3dfx, configure.in, makefile.autoconf.am,
	h3/glide3/src/makefile.autoconf.am,
	h5/glide3/src/makefile.autoconf.am: Added configure.in entries for
	h3/incsrc/makefile.autoconf and cvg/incsrc/makefile.autoconf. 
	Also, changed the pattern of removed files slightly for
	./chores.3dfx --clean.

2000-08-01 13:25  billwhite

	* ChangeLog, INSTALL, README, chores.3dfx, configure.in,
	cvg/makefile.autoconf.am, cvg/glide3/src/makefile.autoconf.am,
	cvg/incsrc/makefile.autoconf.am, h3/makefile.autoconf.am,
	h3/incsrc/makefile.autoconf.am, h5/glide3/src/makefile.autoconf.am:
	Fixed some errors in the autoconf/automake build procedure.

2000-07-27 09:36  billwhite

	* chores.3dfx: Made another slight change to the function which
	determines if directories are different or the same.

2000-07-27 09:30  billwhite

	* chores.3dfx: Made a slight modification to the chores.3dfx
	script, so that it refuses to remove the current directory.

2000-07-26 22:39  billwhite

	* AUTHORS, COPYING, ChangeLog, INSTALL, NEWS, README, acsite.m4,
	build.3dfx.in, chores.3dfx, config.guess, config.sub, configure.in,
	install-sh, libtool, ltconfig, ltmain.sh, makefile.autoconf.am,
	missing, mkinstalldirs, cvg/makefile.autoconf.am,
	cvg/glide3/makefile.autoconf.am,
	cvg/glide3/src/makefile.autoconf.am, cvg/init/makefile.autoconf.am,
	h3/makefile.autoconf.am, h3/bin/makefile.autoconf.am,
	h3/glide3/makefile.autoconf.am, h3/glide3/src/makefile.autoconf.am,
	h3/minihwc/makefile.autoconf.am, h5/makefile.autoconf.am,
	h5/glide3/makefile.autoconf.am, h5/glide3/src/makefile.autoconf.am,
	h5/incsrc/makefile.autoconf.am, h5/minihwc/makefile.autoconf.am:
	Added many files to support automake/autoconf building.

2000-07-20 20:04  joseph

	* h5/glide3/src/: gglide.c, gsst.c: Fixed stride problem that broke
	single buffered rendering.

2000-07-19 19:52  billwhite

	* h5/glide3/src/glfb.c: Fixed a bug in grLfbLock.  For write locks,
	the code returned the address of the LFB, not the address of the
	buffer.  This may be the Windows behavior, but it's not the
	behavior we expect in Linux.  I changed the Linux behavior, and
	left the Windows behavior alone.

2000-07-12 17:33  joseph

	* makefile.linux, cvg/makefile.linux, cvg/bin/makefile.linux,
	cvg/binsrc/makefile.linux, cvg/glide3/makefile.linux,
	cvg/glide3/src/makefile.linux, cvg/glide3/tests/makefile.linux,
	cvg/include/makefile.linux, cvg/incsrc/makefile.linux,
	cvg/init/makefile.linux, cvg/lib/makefile.linux,
	cvg/libsrc/makefile.linux, h3/makefile.linux,
	h3/bin/makefile.linux, h3/binsrc/makefile.linux,
	h3/cinit/makefile.linux, h3/glide3/makefile.linux,
	h3/glide3/src/makefile.linux, h3/glide3/tests/makefile.linux,
	h3/include/makefile.linux, h3/incsrc/makefile.linux,
	h3/lib/makefile.linux, h3/libsrc/makefile.linux,
	h3/minihwc/makefile.linux: Updated makefile.linux files to use
	3dfx.mak.linux instaed of the old 3dfx.mak

2000-07-07 13:41  billwhite

	* README: Corrected some textual errors.  Deleted all references to
	Glide2.

2000-07-07 13:37  billwhite

	* README, h5/bin/makefile.linux, h5/glide3/src/glfb.c,
	h5/minihwc/linhwc.c: Changes to support reading and writing the
	depth buffer in Linux.

2000-06-27 15:59  joseph

	* h5/glide3/src/: cpudtect.s, makefile.linux, xdraw2.inc.s,
	xdraw2.s, xdraw3.s, xtexdl.s: Previous checkin of asm files were
	already preprocessed.  Fixed build rules for 3DNow optimized
	assembly.

2000-06-26 19:21  joseph

	* h5/glide3/src/: cpudtect.S, cpudtect.s, ppcdraw2.S, ppcdraw2.s,
	xdraw2.S, xdraw2.inc.S, xdraw2.inc.s, xdraw2.s, xdraw3.S, xdraw3.s,
	xtexdl.S, xtexdl.s: Changing extension .S to .s for ease of
	synchronization with 3dfx's internal (case insensitive) windows
	source repository.  Note that these files are still run through the
	C preprocessor though special make rules are now employeed.

2000-06-26 17:56  joseph

	* h5/minihwc/: dos_mode.c, dxdrvr.c, fxhwc.h, gdebug.c, hwcext.h,
	hwcio.c, hwcio.h, initvga.h, lindri.h, linhwc.c, mac_mode.c,
	makefile.linux, minihwc.c, minihwc.h, qmodes.h, tv.h: Merged with
	3dfx internal source repository so that the source base stays up to
	date.

2000-06-26 17:50  joseph

	* h5/: libsrc/makefile.linux, lib/makefile.linux: Merged with 3dfx
	internal source repository so that the source base stays up to
	date.

2000-06-26 17:42  joseph

	* h5/incsrc/: fxhal.h, fxvid.h, gdebug.h, h3.h, h3cinit.h,
	h3defs.h, h3gdefs.h, h3hwc.h, h3info.h, h3regs.h, makefile.linux,
	sst1vid.h, vector.h, vxd.h: Merged with 3dfx internal source
	repository so that the source base stays up to date.

2000-06-26 17:36  joseph

	* h5/: glide3/makefile.linux, include/makefile.linux: Merged with
	3dfx internal source repository so that the source base stays up to
	date.

2000-06-26 17:26  joseph

	* h5/glide3/src/: cpudtect.lst, diget.c, diglide.c, disst.c,
	distate.c, distrip.c, ditex.c, fifo.c, fxbldno.c, fxcmd.h,
	fxgasm.c, fxglide.h, fxsplash.h, g3df.c, gaa.c, gbanner.c, gdraw.c,
	gerror.c, gglide.c, glfb.c, glidesys.h, glideutl.h, gpci.c, gsfc.c,
	gsfc.h, gsplash.c, gsst.c, gsstdef.h, gstrip.c, gstrip_ppc.c,
	gtex.c, gtexdl.c, gthread.c, gu.c, gxdraw.c, gxdraw_ppc.c,
	makefile.linux, qmodes.h, rcver.h, tv.h, xdraw2.lst, xdraw3.lst,
	xtexdl.lst, xtexdl_def.c: Merged with 3dfx internal source
	repository so that the source base stays up to date.

2000-06-26 17:13  joseph

	* h5/: binsrc/makefile.linux, bin/makefile.linux: Merged with 3dfx
	internal source repository so that the source base stays up to
	date.

2000-06-16 16:45  joseph

	* h5/minihwc/makefile.linux: Initial Checkin into SourceForge

2000-06-16 16:42  joseph

	* h5/minihwc/win_mode.c: Removed

2000-06-16 16:32  joseph

	* h5/incsrc/gendate.c: Initial Checkin into sourceforge

2000-06-15 18:28  joseph

	* README: Documented the H5 tree.

2000-06-15 18:25  joseph

	* makefile.linux: Added support for the h5 tree.

2000-06-14 20:32  joseph

	* h5/: glide3/tests/t2kx32.3df, glide3/tests/t512x32.3df,
	glide3/tests/glide.txs, glide3/tests/miro.3df, glide3/tests/tlib.h,
	minihwc/dos_mode.c, minihwc/dxdrvr.c, minihwc/fxhwc.h,
	minihwc/gdebug.c, minihwc/hwcext.h, minihwc/hwcio.c,
	minihwc/hwcio.h, minihwc/initvga.h, minihwc/lindri.h,
	minihwc/linhwc.c, minihwc/mac_mode.c, minihwc/minihwc.c,
	minihwc/minihwc.h, minihwc/qmodes.h, minihwc/setmode.h,
	minihwc/tv.h, minihwc/win_mode.c: Initial checkin into SourceForge.

2000-06-14 20:29  joseph

	* h5/: glide3/makefile, glide3/makefile.linux, incsrc/cmddefs.h,
	incsrc/fxhal.h, incsrc/fxvid.h, incsrc/gdebug.h, incsrc/h3.h,
	incsrc/h3cinit.h, incsrc/h3defs.h, incsrc/h3gdefs.h,
	incsrc/h3hwc.h, incsrc/h3info.h, incsrc/h3regs.h, incsrc/makefile,
	incsrc/makefile.linux, incsrc/makefile.unix, incsrc/sst1vid.h,
	incsrc/vector.h, incsrc/vxd.h, glide3/tests/cmp.bat,
	glide3/tests/makefile, glide3/tests/makefile.linux,
	glide3/tests/sst1img.bat, glide3/tests/testimg.bat,
	glide3/tests/tldata.inc, glide3/tests/t1kx32.3df,
	glide3/tests/t256x32.3df: Initial checkin into SourceForge.

2000-06-14 20:25  joseph

	* h5/glide3/: tests/alpha.3df, tests/lava.3df, tests/decal1.3df,
	tests/light.3df, tests/matt1.3df, src/cpudtect.S, src/cpudtect.asm,
	src/cpudtect.lst, src/diget.c, src/diglide.c, src/disst.c,
	src/distate.c, src/distrip.c, src/ditex.c, src/fifo.c,
	src/fxbldno.c, src/fxcmd.h, src/fxgasm.c, src/fxglide.h,
	src/fxsplash.h, src/g3df.c, src/g3ext.h, src/gaa.c, src/gbanner.c,
	src/gdraw.c, src/gerror.c, src/gglide.c, src/glfb.c, src/glide.h,
	src/glide.rc, src/glide3.rx, src/glidesys.h, src/glideutl.h,
	src/gpci.c, src/gsfc.c, src/gsfc.h, src/gsfctabl.h, src/gsplash.c,
	src/gsst.c, src/gsstdef.h, src/gstrip.c, src/gstrip_ppc.c,
	src/gtex.c, src/gtexdl.c, src/gthread.c, src/gu.c, src/gxdraw.c,
	src/gxdraw_ppc.c, src/macglide3.h, src/makefile,
	src/makefile.linux, src/ppcdraw2.S, src/ppcdraw2.inc, src/qmodes.h,
	src/rcver.h, src/tv.h, src/version.r, src/xdraw2.S, src/xdraw2.asm,
	src/xdraw2.inc, src/xdraw2.inc.S, src/xdraw2.lst, src/xdraw3.S,
	src/xdraw3.asm, src/xdraw3.lst, src/xdrawppc.asm, src/xdrawppc.inc,
	src/xtexdl.S, src/xtexdl.asm, src/xtexdl.lst, src/xtexdl_def.c:
	Initial checkin into SourceForge.

2000-06-14 20:21  joseph

	* h5/: binsrc/makefile, binsrc/makefile.linux, include/makefile,
	include/makefile.linux, lib/makefile, lib/makefile.linux, makefile,
	makefile.linux, bin/makefile, bin/makefile.linux, libsrc/makefile,
	libsrc/makefile.linux, glide3/tests/display.c,
	glide3/tests/sbench.c, glide3/tests/test00.c,
	glide3/tests/test01.c, glide3/tests/test02.c,
	glide3/tests/test03.c, glide3/tests/test04.c,
	glide3/tests/test05.c, glide3/tests/test06.c,
	glide3/tests/test07.c, glide3/tests/test08.c,
	glide3/tests/test09.c, glide3/tests/test10.c,
	glide3/tests/test11.c, glide3/tests/test12.c,
	glide3/tests/test13.c, glide3/tests/test14.c,
	glide3/tests/test15.c, glide3/tests/test16.c,
	glide3/tests/test17.c, glide3/tests/test18.c,
	glide3/tests/test19.c, glide3/tests/test20.c,
	glide3/tests/test21.c, glide3/tests/test22.c,
	glide3/tests/test23.c, glide3/tests/test24.c,
	glide3/tests/test25.c, glide3/tests/test26.c,
	glide3/tests/test27.c, glide3/tests/test28.c,
	glide3/tests/test29.c, glide3/tests/test30.c,
	glide3/tests/test31.c, glide3/tests/test32.c,
	glide3/tests/test33.c, glide3/tests/test34.c,
	glide3/tests/test35.c, glide3/tests/test36.c,
	glide3/tests/test37.c, glide3/tests/test38.c,
	glide3/tests/test39.c, glide3/tests/test40.c,
	glide3/tests/test41.c, glide3/tests/test42.c,
	glide3/tests/test43.c, glide3/tests/test44.c,
	glide3/tests/test45.c, glide3/tests/test46.c,
	glide3/tests/test47.c, glide3/tests/test48.c,
	glide3/tests/test49.c, glide3/tests/tlib.c,
	glide3/tests/tlibmerged.c: Initial checkin into SourceForge.

2000-06-13 12:57  joseph

	* h3/glide3/src/g3ext.h: Intial checkin into sourceforge.

2000-04-20 17:20  joseph

	* cvg/init/: canopus.c, canopus.h, dac.c, gamma.c, gdebug.c,
	info.c, init.rc, makefile.linux, parse.c, print.c, rcver.h, sli.c,
	sst1init.c, sst1init.h, util.c, video.c: Copied windows init code
	to fix incompatibility with Athlon

2000-03-20 16:42  joseph

	* h3/minihwc/: linhwc.c.dri, linhwc.c.save: More robust DAC writes
	to insure that writes go through.  Fixes "Funky Colors"

2000-02-15 17:35  joseph

	* h3/: glide3/src/fxgasm.c, glide3/src/gdraw.c,
	glide3/src/gerror.c, glide3/src/glidesys.h, glide3/src/gthread.c,
	glide3/src/xdraw2.S, glide3/src/xdraw2.inc.S, glide3/src/xdraw3.S,
	minihwc/linhwc.c.save: Changes to support FreeBSD (patch submitted
	by Doug Rabson)

2000-01-28 16:09  joseph

	* README: Upated README with information about different build
	options.

2000-01-28 14:25  joseph

	* cvg/glide3/src/makefile.linux, cvg/glide3/tests/makefile.distrib,
	cvg/glide3/tests/makefile.linux, h3/glide3/src/makefile.linux,
	h3/glide3/tests/makefile.distrib, h3/glide3/tests/makefile.linux:
	Improved shared library names with soname's built into the library.

2000-01-19 18:38  joseph

	* h3/glide3/tests/makefile.distrib: Support new SDK layout with
	/usr/include/glide and /usr/include/glide3

2000-01-19 13:51  joseph

	* h3/glide3/makefile.linux: Actually build the tests

2000-01-19 13:16  joseph

	* h3/glide3/tests/: alpha.3df, cmp.bat, decal1.3df, display.c,
	lava.3df, light.3df, makefile.distrib, makefile.linux,
	makefile.unix, matt1.3df, miro.3df, sbench.c, sst1img.bat,
	test00.c, test01.c, test02.c, test03.c, test04.c, test04a,
	test04a.c, test05.c, test06.c, test07.c, test08.c, test09.c,
	test10.c, test11.c, test12.c, test13.c, test14.c, test15.c,
	test16.c, test17.c, test18.c, test19.c, test20.c, test21.c,
	test22.c, test23.c, test24.c, test25.c, test26.c, test27.c,
	test28.c, test29.c, test30.c, test31.c, test32.c, test33.c,
	test34.c, test35.c, test36.c, testimg.bat, tldata.inc, tlib.c,
	tlib.h: Added missing test files

2000-01-07 15:01  joseph

	* glide_license.txt: These should have been here a long time ago.

2000-01-07 14:58  joseph

	* README: Added a note about H3 standalone vs. DRI client.

1999-12-16 16:19  joseph

	* makefile.linux: New toplevel makefile can build either cvg or h3.

1999-12-16 16:10  joseph

	* cvg/makefile.unix, cvg/bin/makefile.unix,
	cvg/binsrc/makefile.unix, cvg/glide3/makefile.unix,
	cvg/glide3/src/makefile.unix, cvg/glide3/tests/makefile.unix,
	cvg/include/makefile.unix, cvg/incsrc/makefile.unix,
	cvg/init/makefile.unix, cvg/lib/makefile.unix,
	cvg/libsrc/makefile.unix, h3/cinit/makefile.unix,
	h3/incsrc/makefile.unix, h3/minihwc/makefile.unix: Replaced with
	makefile.linux files that support the shared swlibs.

1999-12-16 16:08  joseph

	* README: Basic build instructions.

1999-12-16 16:08  joseph

	* cvg/: makefile.linux, bin/makefile.linux, binsrc/makefile.linux,
	glide3/makefile.linux, glide3/src/makefile.linux,
	glide3/tests/makefile.linux, include/makefile.linux,
	incsrc/makefile.linux, init/makefile.linux, lib/makefile.linux,
	libsrc/makefile.linux: New makefiles to support the shared swlibs.

1999-12-07 16:42  joseph

	* cvg/: makefile.unix, bin/makefile.unix, binsrc/makefile.unix,
	glide3/makefile.unix, glide3/src/banner.inc, glide3/src/cpudtect.S,
	glide3/src/cpudtect.asm, glide3/src/diget.c, glide3/src/diglide.c,
	glide3/src/digutex.c, glide3/src/disst.c, glide3/src/distate.c,
	glide3/src/distrip.c, glide3/src/ditex.c, glide3/src/fifo.c,
	glide3/src/fxbldno.c, glide3/src/fxgasm.c, glide3/src/fxglide.h,
	glide3/src/g3df.c, glide3/src/gaa.c, glide3/src/gbanner.c,
	glide3/src/gdraw.c, glide3/src/gerror.c, glide3/src/gglide.c,
	glide3/src/glfb.c, glide3/src/glide.h, glide3/src/glide.rc,
	glide3/src/glide3.rx, glide3/src/glidesys.h, glide3/src/glideutl.h,
	glide3/src/gpci.c, glide3/src/gsplash.c, glide3/src/gsst.c,
	glide3/src/gsstdef.h, glide3/src/gstrip.c, glide3/src/gtex.c,
	glide3/src/gtexdl.c, glide3/src/gu.c, glide3/src/gump.h,
	glide3/src/gxdraw.c, glide3/src/macglide.h,
	glide3/src/makefile.unix, glide3/src/rcver.h,
	glide3/src/splshdat.c, glide3/src/xdraw2.S, glide3/src/xdraw2.asm,
	glide3/src/xdraw2.inc, glide3/src/xdraw2.inc.S,
	glide3/src/xdraw3.S, glide3/src/xdraw3.asm, glide3/src/xtexdl.S,
	glide3/src/xtexdl.asm, glide3/src/xtexdl.c, glide3/tests/alpha.3df,
	glide3/tests/cmp.bat, glide3/tests/decal1.3df,
	glide3/tests/display.c, glide3/tests/lava.3df,
	glide3/tests/light.3df, glide3/tests/makefile.unix,
	glide3/tests/matt1.3df, glide3/tests/miro.3df,
	glide3/tests/sbench.c, glide3/tests/sst1img.bat,
	glide3/tests/test00.c, glide3/tests/test01.c,
	glide3/tests/test02.c, glide3/tests/test03.c,
	glide3/tests/test04.c, glide3/tests/test04a,
	glide3/tests/test04a.c, glide3/tests/test05.c,
	glide3/tests/test06.c, glide3/tests/test07.c,
	glide3/tests/test08.c, glide3/tests/test09.c,
	glide3/tests/test10.c, glide3/tests/test11.c,
	glide3/tests/test12.c, glide3/tests/test13.c,
	glide3/tests/test14.c, glide3/tests/test15.c,
	glide3/tests/test16.c, glide3/tests/test17.c,
	glide3/tests/test18.c, glide3/tests/test19.c,
	glide3/tests/test20.c, glide3/tests/test21.c,
	glide3/tests/test22.c, glide3/tests/test23.c,
	glide3/tests/test24.c, glide3/tests/test25.c,
	glide3/tests/test26.c, glide3/tests/test27.c,
	glide3/tests/test28.c, glide3/tests/test29.c,
	glide3/tests/test30.c, glide3/tests/test31.c,
	glide3/tests/test32.c, glide3/tests/test33.c,
	glide3/tests/test34.c, glide3/tests/test35.c,
	glide3/tests/test36.c, glide3/tests/testimg.bat,
	glide3/tests/makefile.distrib, glide3/tests/tldata.inc,
	glide3/tests/tlib.c, glide3/tests/tlib.h, include/makefile.unix,
	incsrc/cvg.h, incsrc/cvgdefs.h, incsrc/cvginfo.h, incsrc/cvgregs.h,
	incsrc/fxhal.h, incsrc/gdebug.h, incsrc/h3.h, incsrc/makefile.unix,
	incsrc/sst1vid.h, incsrc/vxd.h, init/dac.c, init/gamma.c,
	init/gdebug.c, init/info.c, init/init.rc, init/makefile.unix,
	init/parse.c, init/print.c, init/rcver.h, init/sli.c,
	init/sst1init.c, init/sst1init.h, init/util.c, init/video.c,
	init/voodoo2.ini, lib/makefile.unix, libsrc/makefile.unix: Initial
	revision

1999-12-07 16:42  joseph

	* cvg/: makefile.unix, bin/makefile.unix, binsrc/makefile.unix,
	glide3/makefile.unix, glide3/src/banner.inc, glide3/src/cpudtect.S,
	glide3/src/cpudtect.asm, glide3/src/diget.c, glide3/src/diglide.c,
	glide3/src/digutex.c, glide3/src/disst.c, glide3/src/distate.c,
	glide3/src/distrip.c, glide3/src/ditex.c, glide3/src/fifo.c,
	glide3/src/fxbldno.c, glide3/src/fxgasm.c, glide3/src/fxglide.h,
	glide3/src/g3df.c, glide3/src/gaa.c, glide3/src/gbanner.c,
	glide3/src/gdraw.c, glide3/src/gerror.c, glide3/src/gglide.c,
	glide3/src/glfb.c, glide3/src/glide.h, glide3/src/glide.rc,
	glide3/src/glide3.rx, glide3/src/glidesys.h, glide3/src/glideutl.h,
	glide3/src/gpci.c, glide3/src/gsplash.c, glide3/src/gsst.c,
	glide3/src/gsstdef.h, glide3/src/gstrip.c, glide3/src/gtex.c,
	glide3/src/gtexdl.c, glide3/src/gu.c, glide3/src/gump.h,
	glide3/src/gxdraw.c, glide3/src/macglide.h,
	glide3/src/makefile.unix, glide3/src/rcver.h,
	glide3/src/splshdat.c, glide3/src/xdraw2.S, glide3/src/xdraw2.asm,
	glide3/src/xdraw2.inc, glide3/src/xdraw2.inc.S,
	glide3/src/xdraw3.S, glide3/src/xdraw3.asm, glide3/src/xtexdl.S,
	glide3/src/xtexdl.asm, glide3/src/xtexdl.c, glide3/tests/alpha.3df,
	glide3/tests/cmp.bat, glide3/tests/decal1.3df,
	glide3/tests/display.c, glide3/tests/lava.3df,
	glide3/tests/light.3df, glide3/tests/makefile.unix,
	glide3/tests/matt1.3df, glide3/tests/miro.3df,
	glide3/tests/sbench.c, glide3/tests/sst1img.bat,
	glide3/tests/test00.c, glide3/tests/test01.c,
	glide3/tests/test02.c, glide3/tests/test03.c,
	glide3/tests/test04.c, glide3/tests/test04a,
	glide3/tests/test04a.c, glide3/tests/test05.c,
	glide3/tests/test06.c, glide3/tests/test07.c,
	glide3/tests/test08.c, glide3/tests/test09.c,
	glide3/tests/test10.c, glide3/tests/test11.c,
	glide3/tests/test12.c, glide3/tests/test13.c,
	glide3/tests/test14.c, glide3/tests/test15.c,
	glide3/tests/test16.c, glide3/tests/test17.c,
	glide3/tests/test18.c, glide3/tests/test19.c,
	glide3/tests/test20.c, glide3/tests/test21.c,
	glide3/tests/test22.c, glide3/tests/test23.c,
	glide3/tests/test24.c, glide3/tests/test25.c,
	glide3/tests/test26.c, glide3/tests/test27.c,
	glide3/tests/test28.c, glide3/tests/test29.c,
	glide3/tests/test30.c, glide3/tests/test31.c,
	glide3/tests/test32.c, glide3/tests/test33.c,
	glide3/tests/test34.c, glide3/tests/test35.c,
	glide3/tests/test36.c, glide3/tests/testimg.bat,
	glide3/tests/makefile.distrib, glide3/tests/tldata.inc,
	glide3/tests/tlib.c, glide3/tests/tlib.h, include/makefile.unix,
	incsrc/cvg.h, incsrc/cvgdefs.h, incsrc/cvginfo.h, incsrc/cvgregs.h,
	incsrc/fxhal.h, incsrc/gdebug.h, incsrc/h3.h, incsrc/makefile.unix,
	incsrc/sst1vid.h, incsrc/vxd.h, init/dac.c, init/gamma.c,
	init/gdebug.c, init/info.c, init/init.rc, init/makefile.unix,
	init/parse.c, init/print.c, init/rcver.h, init/sli.c,
	init/sst1init.c, init/sst1init.h, init/util.c, init/video.c,
	init/voodoo2.ini, lib/makefile.unix, libsrc/makefile.unix: Initial
	checkin into SourceForge.

1999-11-24 16:44  joseph

	* h3/: makefile.linux, bin/makefile.linux, binsrc/makefile.linux,
	cinit/h3cinit.c, cinit/h3cinit.h, cinit/h3cinitdd.h,
	cinit/makefile.linux, cinit/makefile.unix, cinit/memtable.h,
	cinit/modetabl.h, cinit/plltable.h, glide3/makefile.linux,
	glide3/src/cpudtect.S, glide3/src/cpudtect.asm, glide3/src/diget.c,
	glide3/src/diglide.c, glide3/src/disst.c, glide3/src/distate.c,
	glide3/src/distrip.c, glide3/src/ditex.c, glide3/src/fifo.c,
	glide3/src/fxbldno.c, glide3/src/fxcmd.h, glide3/src/fxgasm.c,
	glide3/src/fxglide.h, glide3/src/fxsplash.h, glide3/src/g3df.c,
	glide3/src/gaa.c, glide3/src/gbanner.c, glide3/src/gdraw.c,
	glide3/src/gerror.c, glide3/src/glide.h, glide3/src/glide.rc,
	glide3/src/glide3.rx, glide3/src/glidesys.h, glide3/src/glideutl.h,
	glide3/src/gpci.c, glide3/src/gsfc.c, glide3/src/gsfc.h,
	glide3/src/gsplash.c, glide3/src/gsstdef.h, glide3/src/gstrip.c,
	glide3/src/gtex.c, glide3/src/gtexdl.c, glide3/src/gthread.c,
	glide3/src/gu.c, glide3/src/gxdraw.c, glide3/src/macglide3.h,
	glide3/src/makefile.linux, glide3/src/qmodes.h, glide3/src/rcver.h,
	glide3/src/tv.h, glide3/src/version.r, glide3/src/xdraw2.S,
	glide3/src/xdraw2.asm, glide3/src/xdraw2.inc,
	glide3/src/xdraw2.inc.S, glide3/src/xdraw3.S,
	glide3/src/gsst.c.save, glide3/src/xdraw3.asm, glide3/src/xtexdl.S,
	glide3/src/xtexdl.asm, glide3/src/xtexdl_def.c,
	glide3/src/gglide.c.dri, glide3/src/gsst.c.dri,
	glide3/src/gglide.c.save, glide3/src/glfb.c.dri,
	glide3/src/glfb.c.save, include/makefile.linux, incsrc/fxhal.h,
	incsrc/fxvid.h, incsrc/gdebug.h, incsrc/h3.h, incsrc/h3cinit.h,
	incsrc/h3defs.h, incsrc/h3gdefs.h, incsrc/h3hwc.h, incsrc/h3info.h,
	incsrc/h3regs.h, incsrc/makefile.linux, incsrc/makefile.unix,
	incsrc/sst1vid.h, incsrc/vector.h, incsrc/vxd.h,
	lib/makefile.linux, libsrc/makefile.linux, minihwc/dos_mode.c,
	minihwc/dxdrvr.c, minihwc/fxhwc.h, minihwc/gdebug.c,
	minihwc/hwcext.h, minihwc/hwcio.c, minihwc/hwcio.h,
	minihwc/initvga.h, minihwc/lindri.h, minihwc/linhwc.c.dri,
	minihwc/linhwc.c.save, minihwc/makefile, minihwc/makefile.linux,
	minihwc/makefile.unix, minihwc/minihwc.c, minihwc/minihwc.h,
	minihwc/qmodes.h, minihwc/setmode.h, minihwc/tv.h,
	minihwc/win_mode.c: Initial revision

1999-11-24 16:44  joseph

	* h3/: makefile.linux, bin/makefile.linux, binsrc/makefile.linux,
	cinit/h3cinit.c, cinit/h3cinit.h, cinit/h3cinitdd.h,
	cinit/makefile.linux, cinit/makefile.unix, cinit/memtable.h,
	cinit/modetabl.h, cinit/plltable.h, glide3/makefile.linux,
	glide3/src/cpudtect.S, glide3/src/cpudtect.asm, glide3/src/diget.c,
	glide3/src/diglide.c, glide3/src/disst.c, glide3/src/distate.c,
	glide3/src/distrip.c, glide3/src/ditex.c, glide3/src/fifo.c,
	glide3/src/fxbldno.c, glide3/src/fxcmd.h, glide3/src/fxgasm.c,
	glide3/src/fxglide.h, glide3/src/fxsplash.h, glide3/src/g3df.c,
	glide3/src/gaa.c, glide3/src/gbanner.c, glide3/src/gdraw.c,
	glide3/src/gerror.c, glide3/src/glide.h, glide3/src/glide.rc,
	glide3/src/glide3.rx, glide3/src/glidesys.h, glide3/src/glideutl.h,
	glide3/src/gpci.c, glide3/src/gsfc.c, glide3/src/gsfc.h,
	glide3/src/gsplash.c, glide3/src/gsstdef.h, glide3/src/gstrip.c,
	glide3/src/gtex.c, glide3/src/gtexdl.c, glide3/src/gthread.c,
	glide3/src/gu.c, glide3/src/gxdraw.c, glide3/src/macglide3.h,
	glide3/src/makefile.linux, glide3/src/qmodes.h, glide3/src/rcver.h,
	glide3/src/tv.h, glide3/src/version.r, glide3/src/xdraw2.S,
	glide3/src/xdraw2.asm, glide3/src/xdraw2.inc,
	glide3/src/xdraw2.inc.S, glide3/src/xdraw3.S,
	glide3/src/gsst.c.save, glide3/src/xdraw3.asm, glide3/src/xtexdl.S,
	glide3/src/xtexdl.asm, glide3/src/xtexdl_def.c,
	glide3/src/gglide.c.dri, glide3/src/gsst.c.dri,
	glide3/src/gglide.c.save, glide3/src/glfb.c.dri,
	glide3/src/glfb.c.save, include/makefile.linux, incsrc/fxhal.h,
	incsrc/fxvid.h, incsrc/gdebug.h, incsrc/h3.h, incsrc/h3cinit.h,
	incsrc/h3defs.h, incsrc/h3gdefs.h, incsrc/h3hwc.h, incsrc/h3info.h,
	incsrc/h3regs.h, incsrc/makefile.linux, incsrc/makefile.unix,
	incsrc/sst1vid.h, incsrc/vector.h, incsrc/vxd.h,
	lib/makefile.linux, libsrc/makefile.linux, minihwc/dos_mode.c,
	minihwc/dxdrvr.c, minihwc/fxhwc.h, minihwc/gdebug.c,
	minihwc/hwcext.h, minihwc/hwcio.c, minihwc/hwcio.h,
	minihwc/initvga.h, minihwc/lindri.h, minihwc/linhwc.c.dri,
	minihwc/linhwc.c.save, minihwc/makefile, minihwc/makefile.linux,
	minihwc/makefile.unix, minihwc/minihwc.c, minihwc/minihwc.h,
	minihwc/qmodes.h, minihwc/setmode.h, minihwc/tv.h,
	minihwc/win_mode.c: Initial checkin for SourceForge