Search found 488 matches
- Mon Sep 25, 2017 10:32 am
- Forum: General Developer Support
- Topic: Outline Font OT_BaseLine data not found
- Replies: 8
- Views: 9063
Re: Outline Font OT_BaseLine data not found
TypeManager uses OT_BaseLine but also has fallback code which calculates the baseline based on the highest ascend and descend values of the glyphs if OT_BaseLine fails so I guess OT_BaseLine is not something that can be relied upon for all fonts.
- Mon Aug 28, 2017 9:18 pm
- Forum: General AmigaOS
- Topic: Bug in Multiview Search requester
- Replies: 43
- Views: 32719
Re: Bug in Multiview Search requester
I'm sorry, but no. I think that would be breaking the NDA.Raziel wrote:Nice, can i test it?
- Mon Aug 28, 2017 8:54 pm
- Forum: General Developer Support
- Topic: Silly things kill SDL/MiniGL performance on the WB screen
- Replies: 16
- Views: 16206
Re: Compositing kills SDL/MiniGL performance on the WB scree
...or finally support the whole gfx ram available on a gfx card, instead of only 128 MB... We'll get there eventually, although that won't help users of older Radeon cards (and the Radeon M9) that genuinely have less than 256 MiB. Hans Not to sound harsh, but with the speed of development, the boar...
- Mon Aug 28, 2017 12:40 pm
- Forum: General AmigaOS
- Topic: Bug in Multiview Search requester
- Replies: 43
- Views: 32719
Re: Bug in Multiview Search requester
OK, it took about 1000 more tries but I finally got it to fail.
I'm now looking at the text.datatype source code and I've found and fixed one bug to do with the search function. Not sure if it's the culprit though.
I'm now looking at the text.datatype source code and I've found and fixed one bug to do with the search function. Not sure if it's the culprit though.
- Mon Aug 28, 2017 11:15 am
- Forum: General AmigaOS
- Topic: Bug in Multiview Search requester
- Replies: 43
- Views: 32719
Re: Bug in Multiview Search requester
This is the file if one needs a test case: https://github.com/scummvm/scummvm/blob/master/configure I tried reproducing the bug you described using this text file on my beta AmigaOS installation. I pressed RETURN about 50 times and not even once did the initially entered search term change from &qu...
- Mon Aug 14, 2017 3:40 pm
- Forum: Platform: AmigaOne X5000
- Topic: Altivec?
- Replies: 4
- Views: 6085
Re: Altivec?
The Tabor AKA A1222 doesn't have altivec either AFAIK.
Also not all Eyetech AmigaOne models had altivec (only the A1-XE models that came with G4 CPUs).
Also not all Eyetech AmigaOne models had altivec (only the A1-XE models that came with G4 CPUs).
- Thu Aug 03, 2017 11:28 am
- Forum: General Developer Support
- Topic: AvailFonts()
- Replies: 7
- Views: 6746
Re: AvailFonts()
Am I doing something wrong, or is this a bug in AvailFonts? It's the former. In your loop you access the AvailFonts structures by using an index on af but you also increment the pointer every iteration so you end up skipping every second font entry and eventually crashing because you've gone past a...
- Sat Jul 29, 2017 9:04 pm
- Forum: SDK Support
- Topic: CLIB2 failures
- Replies: 19
- Views: 28946
Re: CLIB2 failures
An updated build of clib2 is available on OS4Depot:
http://os4depot.net/index.php?function= ... /clib2.lha
http://os4depot.net/index.php?function= ... /clib2.lha
- Sat Jul 29, 2017 8:59 pm
- Forum: General Developer Support
- Topic: Manually loading shared object
- Replies: 36
- Views: 30838
Re: Manually loading shared object
I'm not able to build a helloworld with clib2, I get undefined reference to GetProgramName. http://forum.hyperion-entertainment.biz/viewtopic.php?f=27&t=3194&hilit=getprogramname There's an updated build of clib2 on OS4Depot which should fix that issue: http://os4depot.net/index.php?functio...
- Tue Jul 11, 2017 6:32 pm
- Forum: General Developer Support
- Topic: libauto creation
- Replies: 4
- Views: 3999
Re: libauto creation
I would not recommend trying to make filesysbox based file systems using clib2. Filesysbox.library is compiled using newlib typedefs, defines and structure and if some of these are different in clib2 then it can cause problems if you use clib2. One such problem is that uid_t/gid_t are 16-bit in newl...