Re: [forum] Choosing an extension for bitmap-only SFNTs

2003-07-09 Thread Andrew C Aitchison
On 10 Jul 2003, Juliusz Chroboczek wrote: > I need to pick an extension for the bitmap-only SFNT fonts[1]. While > these fonts use the same file format as TrueType and OpenType fonts, > they do not fullfill the requirements of any of the four (!) TrueType > specifications. Apple calls them ``sfn

Re: [Fonts] Bitmap-only SFNTs: initial code in CVS

2003-07-09 Thread Juliusz Chroboczek
> 4. Convert all the fonts to bitmap-only sfnt, and give them the >extension ttf (for now -- see my next message): > > $ for i in *.pcf; do fonttosfnt -o ${i%.pcf}.ttf $i ; done > $ rm *.pcf Sorry, forgot an important step: transcoded fonts should be removed, on-the-fly transcoding will happ

Choosing an extension for bitmap-only SFNTs

2003-07-09 Thread Juliusz Chroboczek
I need to pick an extension for the bitmap-only SFNT fonts[1]. While these fonts use the same file format as TrueType and OpenType fonts, they do not fullfill the requirements of any of the four (!) TrueType specifications. Apple calls them ``sfnt-wrapped bitmap fonts'', pfaedit calls them ``bitm

Bitmap-only SFNTs: initial code in CVS

2003-07-09 Thread Juliusz Chroboczek
It is now possible to use bitmap-only SFNTs in XFree86. There is very little left to do at the server level, some more work is needed at the level of fonttosfnt and mkfontscale. 0. Check you've got the right version of XFree86. $ cvs log xc/lib/font/fontfile/fontdir.c | grep 289 289. Twisti

CASHABO.COM PARTNERPROGRAMM

2003-07-09 Thread ami9876
http://www.cashabo.com/?ID=1761 Einfacher Geld verdienen! Wir bieten ihnen mit unserem Partnerprogramm eine gute Möglichkeit einfach und erfolgreich im Adultgewerbe tätig zu sein. Verdienen sie an unseren Projekten Geld ohne weiteren Anbieter und ohne eigenen Content Wir kümmern uns um alles.

Re: a small twm/Imakefile patch

2003-07-09 Thread Alexander Pohoyda
Marc Aurele La France <[EMAIL PROTECTED]> writes: > On 9 Jul 2003, Alexander Pohoyda wrote: > > Matthieu Herrb <[EMAIL PROTECTED]> writes: > > > Alexander Pohoyda wrote (in a message from Monday 7) > > > > http://www.alexander-pohoyda.privat.t-online.de/patches/twm.Imakefile.diff > > > > Can you

Re: X.Org's IPv6 changes (was: CVS Update: xc (branch: trunk))

2003-07-09 Thread Alan Coopersmith
I have no objection if the semantics are the same. I was merely following Steven's Unix Network Programming (Vol 1 2nd Ed) which predates this change in the RFC's and did not realize they had been changed. -Alan Coopersmith- [EMAIL PROTECTED] Sun Microsystems, Inc. -

Re: X.Org's IPv6 changes (was: CVS Update: xc (branch: trunk))

2003-07-09 Thread Marc Aurele La France
On Wed, 9 Jul 2003, Matthieu Herrb wrote: > I had to make the following change to get the code to > compile on OpenBSD, where IPV6_ADD_MEMBERSHIP is not defined. > According to Jun-ichiro itojun Hagino, from the Kame project > and *BSD's IPv6 guru, IPV6_{ADD,DROP}_MEMBERSHIP are obsoleted and > re

Re: X.Org's IPv6 changes (was: CVS Update: xc (branch: trunk))

2003-07-09 Thread Matthieu Herrb
I had to make the following change to get the code to compile on OpenBSD, where IPV6_ADD_MEMBERSHIP is not defined. According to Jun-ichiro itojun Hagino, from the Kame project and *BSD's IPv6 guru, IPV6_{ADD,DROP}_MEMBERSHIP are obsoleted and replaced by IPV6_{JOIN,LEAVE}_GROUP, that's why I chan

Re: [Bugzilla #460] BIGREQUEST size change.

2003-07-09 Thread Marc Aurele La France
On Tue, 8 Jul 2003, Egbert Eich wrote: > This is a matter that maybe should also be discussed on 'forum'. > I don't know how to initiate a joint discussion on both lists. > There is a comment on Roland Mainz's changes to make BIGREQUEST size > tunable. > Further comments are welcome. > Egbert.

GetImage with 8 bit pseudocolor on a 24/32 bit display

2003-07-09 Thread Matthew Tippett
Hello, Trying to work through some problems that I am seeing with X. I have got a TrueColor Display running with 24 bit color (depth 32 bit). Among the visuals available is an 8 bit pseudocolor. A customer has a requirement to use a legacy application that requires the pseudocolor visual. Wh

Re: a small twm/Imakefile patch

2003-07-09 Thread Marc Aurele La France
On 9 Jul 2003, Alexander Pohoyda wrote: > Matthieu Herrb <[EMAIL PROTECTED]> writes: > > Alexander Pohoyda wrote (in a message from Monday 7) > > > http://www.alexander-pohoyda.privat.t-online.de/patches/twm.Imakefile.diff > > Can you elaborate on why is it useful to switch from single quote > >

Re: a small twm/Imakefile patch

2003-07-09 Thread Alexander Pohoyda
Matthieu Herrb <[EMAIL PROTECTED]> writes: > Alexander Pohoyda wrote (in a message from Monday 7) > > http://www.alexander-pohoyda.privat.t-online.de/patches/twm.Imakefile.diff > > Can you elaborate on why is it useful to switch from single quote > quoting to backslashes? It may be not useful a

(Is empty) Wauu Mark, thank you!, I'm going to study it, thanks a lot

2003-07-09 Thread anonymous
___ Yahoo! Messenger - Nueva versión GRATIS Super Webcam, voz, caritas animadas, y más... http://messenger.yahoo.es ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: Hi, one question

2003-07-09 Thread Mark Vojkovich
I'll just chime in with a note about performance. The correct way to do an event loop is something like. while(1) { expose = FALSE; while(XPending(display)) { XNextEvent(display, &event); switch(event.type) { case Expose: expose = TRUE;

Re: X.Org's IPv6 changes (was: CVS Update: xc (branch: trunk))

2003-07-09 Thread Alan Coopersmith
Marc Aurele La France wrote: True. I did not touch DPS at all - I didn't think anyone made a DPS/NX standalone agent that was IPv6 capable, nor that anyone was working on it. I believe as long as you only use DPS as an extension built into the X server it will work fine (at least we haven't seen p

Re: Why lib/font/builtin is not useful -- yet

2003-07-09 Thread Juliusz Chroboczek
>> In the longer term, as client-side fonts become the norm, we could >> kill the core fonts system altogether and only keep the built-in fonts >> for compatibility with the protocol. EE> We cannot do this for people who rely on running legacy apps. Not arguing whether we actually want to do this

Re: X.Org's IPv6 changes (was: CVS Update: xc (branch: trunk))

2003-07-09 Thread Marc Aurele La France
On Wed, 9 Jul 2003, Alan Coopersmith wrote: > Marc Aurele La France wrote: > >>- Incorporate X.Org responses to comments #'s 1, 2, 4, 5, 7, 10, 11, 12, > >> 13, 14 and 15 (taken from an X.Org-internal document dated 2003.06.17). > I'm still working on a second round of patches fo

Re: X.Org's IPv6 changes (was: CVS Update: xc (branch: trunk))

2003-07-09 Thread Alan Coopersmith
Marc Aurele La France wrote: - Incorporate X.Org responses to comments #'s 1, 2, 4, 5, 7, 10, 11, 12, 13, 14 and 15 (taken from an X.Org-internal document dated 2003.06.17). I'm still working on a second round of patches for the X.org review to incorporate the changes from the comme

X.Org's IPv6 changes (was: CVS Update: xc (branch: trunk))

2003-07-09 Thread Marc Aurele La France
On Wed, 9 Jul 2003, Marc Aurele La France wrote: > CVSROOT: /home/x-cvs > Module name: xc > Changes by: [EMAIL PROTECTED] 03/07/09 08:27:41 > Log message: >300. X.Org IPv6 changes (Bugzilla #227, Alan Coopersmith, Marc La France). > See http://www.x.org/IPV6_Specific_Cha

Re: a small twm/Imakefile patch

2003-07-09 Thread Matthieu Herrb
Alexander Pohoyda wrote (in a message from Monday 7) > Does not really deserves a Bugzilla report (1K): > > http://www.alexander-pohoyda.privat.t-online.de/patches/twm.Imakefile.diff > Can you elaborate on why is it useful to switch from single quote quoting to backslashes?

Re: TFT Pivot function

2003-07-09 Thread Alex Deucher
I believe all it supports right now with the standard xfree86 drivers is framebuffer resizing. the kdrive servers support more xrandr options. Alex --- Andrew C Aitchison <[EMAIL PROTECTED]> wrote: > On Tue, 8 Jul 2003, Jesper Tiberg wrote: > > > Hello! > > I just bought a ViewSonic TFT-monitor

Hi, one question

2003-07-09 Thread anonymous
Hi, I'm trying to develop a widget, which is a Textfield, a c++ class with label and textbox, you can see a simple screenshot here: http://www10.brinkster.com/repos/screenshot.jpg My question is, instead to do this: while(1) { XNextEvent(display, &event);