forked from aranym/aranym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10241 lines (6506 loc) · 316 KB
/
ChangeLog
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
2018/02/18 - Thorsten
Some NSAlert constants have been renamed in macOS 10.12
2018/02/18 - Thorsten
Fix some versioned symbol definitions in libcwrap.h for i586 and
aarch64 systems.
Reported by Christian Quante <[email protected]>
2018/02/09 - Thorsten
Recreate SDL resource files using updated ORCS version
2018/02/09 - Thorsten
nfosmesa: update to OpenGL 4.6, adding 119 functions
2018/02/08 - Thorsten
Update links in documentation files to point to new wiki location
2018/02/08 - Thorsten
Update fntconv utility
2018/02/06 - Thorsten
Some MinGW dlls could be missed when creating the archives,
both for snapshot builds and releases.
2018/02/05 - Thorsten
Use smaller font for "X" in hostfs dialog
2018/02/04 - Thorsten
Reformat README.md
2018/02/04 - Thorsten
Add scripts for automated cygwin builds via AppVeyor
2018/02/03 - Thorsten
Fix handling of pathnames with spaces in the cygwin build script.
2018/02/03 - Thorsten
Add a "Build status" indicator to the README
2018/02/03 - Thorsten
Copy back the input fields in the hostfs dialog before scrolling,
in case they have been edited
2018/02/03 - Christian
Add some clear buttons to several setting dialogs.
In the setting dialogs it was not possible to remove selected
entries such as floppy disk images and TOS images.
2018/02/03 - Thorsten
Remove CRs
2018/02/01 - Thorsten
Add some more characters to the font, and reorder it
to use unicode indices. Also add the sources needed to rebuild it.
2018/01/30 - Thorsten
Add a lot of international characters to the builtin font.
Needed to correctly display filenames in the selector.
(our own dialog texts are ascii only, but that can now be changed, too)
2018/01/27 - Thorsten
Fix duplicate assignment introduced in commit #d32c06a5aa4c3ce7c9b77482ac31e14d5a7eb190
2018/01/27 - Thorsten
Fix display of non-ASCII characters in the SDL GUI
(mainly affected the file selector dialog).
2018/01/27 - Thorsten
Reconstruct the font used for the SDL GUI as regular GEM font.
2018/01/27 - Thorsten
Fix compilation problems with newer versions of opcodes library
2018/01/27 - Thorsten
Fix a potential crash when --enable-debug was defined
(va_list argument was reused)
2018/01/27 - Thorsten
Simplify building on cygwin, by adding the necessary
flags to use the MinGW SDL library. Makes the build-cygwin.sh
script obsolete. Also update documentation.
2018/01/26 - Thorsten
Add *.exe to .gitignore, for the sake of cygwin
2018/01/24 - Thorsten
Avoid redefinition of WIN32_LEAN_AND_MEAN with recent SDL versions
on mingw/cygwin
2018/01/09 - Thorsten
Fix NBCD instruction
The V flag was cleared when it shouldn't in some cases. Verified on all
possible combinations.
2018/01/09 - Thorsten
Keep the V flag on the 68030
2017/12/27 - Thorsten
Fix compilation error on MacOS
2017/11/20 - Thorsten
Make combination of --enable-jit-compiler --enable-fullmmu an error,
since it is not supported
2017/11/06 - Thorsten
Use drive letters '1'..'6' for letters beyond 'Z' to be consistent with
MiNT's unifs, and also Teradesk/Thing
2017/11/06 - Thorsten
Fix rare possible wrong order in 'MOVEP M->R' depending on the compiler' optimisations (patch by Toni Wilen)
2017/11/06 - Thorsten
Fix a rare case on 68000 where STOP triggers a privilege exception and stack PC+4 if new SR has bit S=0
For example 'STOP #$555' will trigger a privilege violation exception on 68000 CPU
and stacked PC will point after the STOP instruction.
The behaviour is different on 68000, 68020/030 and 68040/060 (more generic patch by Toni Wilen)
Although this is not documented anymore in recent Motorola's doc, it seems it was described
in very early 68000 documentations
2017/11/06 - Thorsten
Implement Ffchmod for MetaDOS driver.
2017/11/06 - Thorsten
Implement Ffchown for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fcntl for MetaDOS driver.
2017/11/06 - Thorsten
hostfs: Work around a bug with mints calculation
of utc times from file timestamps
2017/11/06 - Thorsten
Implement Fstat64/Ffstat64 for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fchmod for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fchown/Fchown16 for MetaDOS driver.
2017/11/06 - Thorsten
Implement Freadlink for MetaDOS driver.
2017/11/06 - Thorsten
Implement Fsymlink for MetaDOS driver.
2017/11/06 - Thorsten
Implement Flink for MetaDOS driver.
2017/11/06 - Thorsten
Remove dead code from MetaDOS driver.
2017/11/04 - Thorsten
Copy necessary files back from FreeMiNT to metados folder,
to make it possible to build it locally
2017/11/04 - Thorsten
Workaround for generator programs on cygwin sometimes
getting an unresolved symbol reference to cygwin_mingw_abort()
2017/11/03 - Thorsten
Update MetaDOS driver with current Freemint sources,
and make it compilable again.
2017/11/03 - Thorsten
Simplify debug output
2017/10/31 - Thorsten
Fix start of text segment for JIT on ArchLinux
2017/09/17 - Thorsten
Add disassembler support for arm
2017/09/16 - Thorsten
Fix bug introduced in commit b839b37f causing the bpf_helper executable not
to be found
2017/09/16 - Thorsten
Use NO_NESTED_SIGSEGV on linux/arm, to cleanly return from signal handler
2017/09/13 - Thorsten
Update glibc wrapper for arm
2017/09/13 - Thorsten
Some code formatting cleanup
2017/09/10 - Thorsten
Don't use glibc wrapper for Android
2017/09/10 - Thorsten
Don't rely on current directory being writable when creating
temporary config file
2017/09/10 - Thorsten
Fix parameters.h to not declare functions with default values,
as it is also included in objective-c code on macOS
2017/09/10 - Thorsten
Allow NumLock & ScrollLock in the hotkeys dialog
2017/09/10 - Thorsten
Make directory for screenshots configurable
2017/09/09 - Thorsten
Handle hotkeys in the main SDL gui dialog.
This might help in situations where the app is accidently run on the
console, the dialog pops up, and no mouse is available.
2017/09/09 - Thorsten
Automagically purge old snapshots
2017/09/08 - Thorsten
Add some missing variable exports to scripts
2017/09/08 - Thorsten
Avoid an undefined reference when compiling against
older glibc ABI, and using _FORTIFY_SOURCE
2017/09/08 - Thorsten
Add scripts for AppImage creation
2017/09/06 - Thorsten
Move installation of *.desktop and icons to Makefile
2017/09/06 - Thorsten
deploy: silence curl
2017/09/05 - Thorsten
Remove some obsolete items from the TODO list
2017/09/04 - Thorsten
Update a link in README.rtf
2017/09/04 - Thorsten
Use libcwrap.h to link against older glibc abi on linux
2017/09/03 - Thorsten
Prevent "Invalid argument" when attaching the bpf interface
2017/09/03 - Thorsten
Fix typo in last commit
2017/09/03 - Thorsten
Preserve options in the type of the ethernet interface
The "bridge" mode for MacOSX has some options for the filter
to be applied (nofilter, ip, or mcast). Preserve those when
using the GUI dialog.
(currently a workaround only, those options should be
configurable there, too)
2017/09/03 - Thorsten
Make example arabridge script a bit more robust
when parsing ifconfig output
2017/09/02 - Thorsten
Another fix for mouse grabbing. sigh.
2017/09/02 - Thorsten
Some minor cleanups in aratapif
2017/09/02 - Thorsten
Consistently ignore unconfigured ethernet interfaces
2017/09/01 - Thorsten
Fix file descriptor leaks in ethernet handlers
2017/08/31 - Thorsten
Make GrabMouse = Yes work again on macOS
2017/08/31 - Thorsten
Make GrabMouse = Yes work again on macOS
2017/08/31 - Thorsten
Fix invocation of bpf_helper on macOS.
There where several situations where that helper tool would be executed
in an endless loop, or the accept() call in the main app hangs
because the tool already died and never sent a message.
2017/08/30 - Thorsten
Remove libsdl2-dev and libsdl2-image-dev from list of packages to be installed
for travis builds, as it current leads to errors
2017/08/30 - Thorsten
Make GrabMouse = Yes work again
2017/08/29 - Thorsten
macOS: make sure mpfr, gmp and jpeg can be found during configure
when run from xcode in a clean build environment
2017/08/26 - Thorsten
Add new source to MacOSX project
2017/08/26 - Thorsten
osmesa: avoid hiding overloaded virtual functions
2017/08/26 - Thorsten
osmesa: avoid variable length array of constructors
(not supported by older versions of clang)
2017/08/26 - Thorsten
Check return values of vasprintf
2017/08/26 - Thorsten
Fixes for "make distcheck"
For some strange reason, make distcheck did a "make distclean" in
the src/uae_cpu directory, removing the compiler/.deps directory,
then a "make distclean" in the src directory, where it tries to
include the deps files from the compiler directory, which fails.
2017/08/21 - Thorsten
Rename copied SDL function to avoid linking errors
2017/08/21 - Thorsten
Workaround a wrong patch for some distributions of SDL
that had the effect of continously changing the window size.
The original problem was reported here:
References: http://bugzilla.libsdl.org/show_bug.cgi?id=1430
References: http://bugs.debian.org/665779
References: http://bugs.gentoo.org/411539
References: http://bugzilla.novell.com/855639
On SuSE at least, the shipped SDL has a patch applied that not
only reverted that patch, but completely removed the behaviour.
This had the effect that (when using the OpenGL VDI driver),
the resize event from the first window creation was read by application
even if the window has been resized to a different size in the
meantime.
2017/08/21 - Thorsten
Improve mouse for android a bit
2017/08/21 - Thorsten
Update emutos img in package for android to current version
2017/08/21 - Thorsten
Mac OS X 10.9 no longer uses the -psn_XXX command line arg for Finder launches.
2017/08/20 - Thorsten
Update sample config file
2017/08/20 - Thorsten
Remove explicit -march=armv6 from CFLAGS as it breaks building for android
2017/08/20 - Thorsten
Some fixes for cross-compilation environments
2017/08/20 - Thorsten
Protect nfcdrom_linux from being compiled if NFCDORM_LINUX_SUPPORT
is not defined (as is the case for android)
2017/08/20 - Thorsten
Remove bogus ASM_SYM_FOR_FUNC define
2017/08/20 - Thorsten
Fix compilation for --disable-opengl
2017/08/20 - Thorsten
Add some comments to android build instructions
2017/08/16 - Thorsten
Hide the unused Window tabbing entries from macOS Sierra menues
2017/08/16 - Thorsten
Avoid a warning/compile error in generated aranym_version.c
2017/08/15 - Thorsten
Update Xcode project files & scripts to make use of jpeglib like the others
2017/08/15 - Thorsten
Move the commands that fix the runtime library path from the xcode project file
into a separate script
2017/08/15 - Thorsten
Make sure target libraries like -lmpfr are not used for the build tools
2017/08/15 - Thorsten
Some small changes to MacOSX project files done by newer versions of Xcode
2017/08/14 - Thorsten
Create compiler directory if it does not exist
(needed by out-of-source-tree builds like done by the
MacOSX scripts)
2017/07/27 - Thorsten
Fix some build problems on recent versions of cygwin
2017/07/27 - Thorsten
Fix a extern inline declaration to avoid link errors
(only affected MinGW)
2017/07/27 - Thorsten
Avoid a warning
2017/07/26 - Thorsten
Do not fail if pkg-config does not find "gl" package; not all
systems provide one
2017/07/26 - Thorsten
Fix some file permissions
2017/07/23 - Thorsten
Avoid some warnings
2017/07/22 - Thorsten
Enable JIT on Solaris x86_64 hosts
2017/07/22 - Thorsten
sysdeps.h: Remove the OS_solaris part and simply include the headers found by
configure script.
2017/07/22 - Thorsten
Fix some sources to include config.h before any
system header files (needed for defines like
_POSIX_SOURCE and _FILE_OFFSET_BITS)
2017/07/21 - Thorsten
Protect including jpeglib.h by #ifdef __cplusplus;
some old jpeg-6b headers don't do it on their own
2017/07/21 - Thorsten
Remove autoconf test for wchar_t; it wasn't working
and not needed
2017/07/21 - Thorsten
Fix building on FreeBSD
2017/07/20 - Thorsten
Fix building on OpenBSD
Reported by George Koehler
2017/07/17 - Thorsten
Use boolean, not jboolean for older jpeg libraries.
2017/07/17 - Thorsten
For now, make sure memory configuration isn't changed when
loading a config file from the GUI; it does not work yet.
2017/07/17 - Thorsten
Prefer jpeglib over SDL_image; this is the only format needed,
making SDL_image obsolete
2017/07/16 - Thorsten
Fix a few debug printf format strings
2017/07/04 - Thorsten
Disable using the SDL2 sample rate conversion again, it
did not work
2017/07/03 - Thorsten
Increase low starting address for memory probing, using a too low
value sometimes yields an uncatchable SIGSEGV
2017/07/03 - Thorsten
Do not install SIGINT handler when only probing for available memory ranges
2017/07/03 - Thorsten
Fix audio output for SDL2
2017/07/03 - Thorsten
Remove forgotten debug output
2017/06/28 - Thorsten
Display an alert in the sdl-gui when no TOS image could be found.
2017/06/28 - Thorsten
gitignore .directory files created by some filemanagers
2017/06/28 - Thorsten
Make the TOS- and EmuTOS-path selectable in the GUI.
2017/06/27 - Thorsten
Change default emutos image filename to emutos-aranym.img.
2017/06/25 - Thorsten
Sort some keys in dyngl.pl to avoid randomness in generated output
2017/06/25 - Thorsten
Convert logo.png to bmp, and use builtin function from SDL
to load it, avoiding an unneccesary dependency on SDL_image
2017/06/25 - Thorsten
SDL_DisplayFormat() is no longer available in SDL2
2017/06/25 - Thorsten
Define the EXT2 ioctl constants if <ext2fs/ext2_fs.h> is not available
to avoid an unnecessary dependency on e2fsprogs package
2017/06/20 - Thorsten
ata.cpp: fix some cases where two or more
errors where issued when using unsupported addresses;
also suppress some irritating messages caused by
drivers that might try to auto-detect twisted cables,
like EmuTOS since version 0.9.8
2017/06/20 - Thorsten
Set the window manager icon after initializing the video mode
also for SDL 1.x, otherwise it might be loaded in the wrong
format and cause badmatch errors.
2017/06/20 - Thorsten
Use HAVE_VASPRINTF instead of HAVE_GNU_SOURCE
2017/06/20 - Thorsten
Comment out some unused functions
2017/06/20 - Thorsten
Comment out unused usart field
2017/06/20 - Thorsten
Get rid of some annoying warnings generated by gcc 6.x+
2017/06/20 - Thorsten
Fix a wrong signed comparison in usbhost.cpp
2017/06/20 - Thorsten
Fix handling of throw() with newer compilers
C++11 deprecates dynamic exception specifications, and
newer compiler versions generate lots of warnings about them
2017/06/20 - Thorsten
Add missing NEWS entry from last release
2017/06/12 - Thorsten
replace verify.h with slightly different version that was released
under LGPL v2
2017/06/07 - Thorsten
blitter.cpp: reformat the op table to make it more readable
2017/06/07 - Thorsten
blitter.cpp: handle word read/writes of blitter src/dst address
2017/06/07 - Thorsten
blitter.cpp: do not read the source at all for operations that
don't need it, and don't check the source address in these cases;
the bios does not initalize it
2017/06/01 - Thorsten
Remove some unused declarations
contributed by Miro Kropacek
2017/06/01 - Thorsten
add some comments
2017/06/01 - Thorsten
ldd: avoid some warnings on Win32
2017/04/18 - Thorsten
xhdi: return error if fseek fails
2017/02/11 - Thorsten
nfosmesa: fix prototype of glClearNamedFramebufferfi
2017/01/11 - Thorsten
JIT: sync gencomp*.c with current WinUAE sources
2017/01/11 - Thorsten
JIT: sync compemu_midfunc_x86.[cpp|h] with current WinUAE sources
2017/01/10 - Thorsten
JIT: fix regression in definition of status flags
2017/01/10 - Thorsten
JIT: more sync with current WinUAE sources
2017/01/10 - Thorsten
JIT: workaround for cases where a buserror was catched by the
68k code and jumps back into the middle of a compiled block
2017/01/09 - Thorsten
JIT: sync with current WinUAE sources
2017/01/08 - Thorsten
Fix some file permissions; move verify.h to include directory
2017/01/06 - Thorsten
add disassembler support to JIT (with JIT_DEBUG)
2017/01/06 - Thorsten
Detect accesses to HOST NULL ptrs at least in custom segfault handlers,
and terminate Aranym because that indicates a bug in Aranym rather
than the emulated program.
2017/01/06 - Thorsten
Change some debug output to match other output done earlier
2016/12/12 - Thorsten
Update EmuTOS loader for upcoming version
2016/12/12 - Thorsten
Fix typo in phys_put_quad()
2016/12/12 - Thorsten
rtc.h: add define for Mexico, found in TOS sources
2016/12/12 - Thorsten
Update sigsegv handler for x86 to handle some more immediate
data addressing modes
2016/09/14 - Thorsten
configure.ac: Fix non-linux build
Patch from François Revol
2016/03/21 - Andreas
- ncr5380.cpp: emulate MODE register (from Finn Thain <[email protected]>)
2016/03/02 - Thorsten
nf_scsidrv.cpp: some fixes to media change detection
(suggested by Uwe Seimet)
2016/01/15 - Thorsten
Mark texts in sdlgui.sdl as translatable
2015/11/24 - Thorsten
Fix compilation of standalone disassembler
2015/10/24 - Andreas
- src/Makefile.am: remove target file before copying over it
2015/10/18 - Thorsten
nf_scsidrv.cpp: experimental udev-based media change detection
(needs stub program >= V0.82)
2015/10/11 - Thorsten
nf_scsidrv.cpp: some interface changes as suggested by Uwe Seimet
(needs stub program >= V0.81)
2015/10/04 - Thorsten
nf_scsidrv.cpp: some interface changes as suggested by Uwe Seimet
(needs updated stub program)
2015/09/19 - Thorsten
autogen.sh: automake must run after autoheader in freshly cloned
directories
2015/09/19 - Thorsten
nf_scsidrv.cpp: handle the case of NULL pointer for sense_buffer
2015/09/17 - Thorsten
rtc.cpp: freeze reported time while Bit 7 in Register 11 is SET,
and handle BIN/BCD and 12hr/24hr bits
2015/09/14 - Thorsten
Implement NF_SCSIDRV Native Feature
(generic linux sg interface, contributed by Uwe Seimet)
2015/09/12 - Thorsten
Fixed buffersize calculation for buffers passed to SDL_ConvertAudio()
2015/09/05 - Thorsten
nfvdi_soft.{cpp|h}: Fixes and some optimizations for drawing
diagonal lines
2015/08/31 - Thorsten
mathlib.h: remove useless assignment in make_nan()
2015/08/22 - Andreas
- fpu_mpfr.cpp: properly track sign bit of NaN
2015/08/10 - Thorsten
nfosmesa: try to use renderbuffers when Mesa library is not available.
This should finally make that feature available on MacOSX/Cygwin/MingW
2015/07/17 - Thorsten
nfosmesa: make it possible to semi-automatically generate most of
the conversion code (needs descriptions of the parameters in the
generator script)
Deactivate DEBUG code accidentally left activated in last commit
2015/07/15 - Thorsten
nfosmesa: support OSMesaGetProcAddress(); return a function pointer that can
actually be called on the client side
2015/07/14 - Thorsten
nfosmesa: For FULLMMU, copy all input parameters to stack using Readxxx()
before calling external functions; similar for output values.
Can also be activated for normal operation, for proper BUSERROR
reporting in case of faulty addresses.
2015/07/08 - Thorsten
OSMesaCreateLDG(atari side): round buffersize up to word boundaries,
so that the framebuffer can be used for vro_cpyfm()
2015/07/07 - Thorsten
osmesa(Atari side): Rework the way parameters are passed to shared
libs, making them thread-safe and saving ~90k of code. Also creates
an osmesa.slb now, reusing the NFAPI enums as function numbers.
2015/07/02 - Thorsten
nfosmesa: update to OpenGL 4.5, adding 172 functions
2015/07/02 - Thorsten
allow opengl libraries to be a colon separated list of names
2015/07/01 - Thorsten
nfosmesa: a few fixes, and grouping of functions according to GL extension
2015/06/29 - Thorsten
nfosmesa: Add remaining conversion macros for several functions
OpenGL 4.4 complete now; needs testing
2015/06/27 - Thorsten
nfosmesa: Add conversion macros for several functions
87 more to go
2015/06/26 - Thorsten
nfosmesa: Add conversion macros for several functions
220 more to go
2015/06/25 - Thorsten
nfosmesa: Add conversion macros for several functions
362 more to go
2015/06/24 - Thorsten
nfosmesa: Add conversion macros for several functions
496 more to go
2015/06/21 - Thorsten
nfosmesa: handle functions that return a 64-bit type
2015/06/19 - Thorsten
nfosmesa: Add conversion macros for several functions
694 more to go
2015/06/19 - Thorsten
nfosmesa: support exception_error callback (tiny_gl.ldg only)
Update documentation
2015/06/19 - Thorsten
nfosmesa: Fix ldg interface for stupid programs that
call GL functions without creating a context first
2015/06/19 - Thorsten
nfosmesa: Add conversion macros for several functions
722 more to go
2015/06/17 - Thorsten
nfosmesa: Add conversion macros for several functions
805 more to go
2015/06/17 - Thorsten
nfosmesa: fix some export names
2015/06/17 - Thorsten
nfosmesa: fix wrong parameter in glGetStringi
2015/06/17 - Thorsten
nfosmesa: cosmetic: fix prototype descriptions compiled into *.ldg
2015/06/17 - Thorsten
nfosmesa: fix a few prototypes
2015/06/14 - Thorsten
Fix truncated icon file
2015/06/14 - Thorsten
nfosmesa: Add conversion macros for several functions
937 more to go
2015/06/14 - Thorsten
nfosmesa: Fix passing/returning GLhandleARB parameters on MacOSX
2015/06/13 - Thorsten
nfosmesa: convert Atari NULL to Host NULL when fetching pointer arguments
2015/06/13 - Thorsten
nfosmesa: support glGet() for enums that return more than 1 value
2015/06/05 - Thorsten
gencomp.c: move remaining #ifdefs to generated source
2015/06/01 - Thorsten
MacAranym: Reorder default config file location back, but
use last entry if none is found
2015/06/01 - Thorsten