Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
X GUI

XFree & Rendering 72

Keith Packard from SuSE (and a member of the XFree core team) is doing A New Rendering System For X. You can check here to see what he has done so far. Looks great! Help is needed, so if you can give a hand - please do. Keith is going to show some more rendering stuff on LWE.
This discussion has been archived. No new comments can be posted.

XFree & Rendering

Comments Filter:
  • Wrong. It starts to shift things to the server side.

    O, wrong, i'm an idiot, i now see what you meant, and you were right, and a smart answer was already submitted... I'll stick to reading now :-(

  • Is there any version of an antialiased X-server out there that doesn't require massive recompilations (for us newbies who like Linux but can't even recompile the kernel)?
  • It also means that if you're rendering anti-alised text then you can't cut+paste it!

    Eh? Whether you can cut and paste stuff is independent of how it's rendered on the screen; cut and paste is largely done by the client(s), with the only server involvement typically being the use of the selections such as the primary and clipboard selection.

    Putting all these primitives in the Xserver will result in *every* app being able to use these new features efficiently.

    ...but they'll only use it if and when either the application, or the toolkit it uses, is changed to use the rendering extension, unless they somehow bury that stuff in Xlib itself, which I have the impression they're not doing (and I have the impression might not be doable).

  • If you don't want to recompile, then I'm sure you wouldn't be interested in running this, anyway.

    It's still in development, and there are no programs (except for the examples) that actually USE this new rendering system.

    But once there are (or, more likely, GTK+/QT add support), I'm sure that the distros will include it :).
  • Eh? Whether you can cut and paste stuff is independent of how it's rendered on the screen; cut and paste is largely done by the client(s), with the only server involvement typically being the use of the selections such as the primary and clipboard selection. Exactly. Everyone knows how to do clipboard selection of text in X. At the moment if you move to rendering anti-aliased text you have to add the clipboard support in as well by hand. Of course, a reasonable 'AA text library' would do this for you I suppose. ...but they'll only use it if and when either the application, or the toolkit it uses, is changed to use the rendering extension, unless they somehow bury that stuff in Xlib itself, which I have the impression they're not doing (and I have the impression might not be doable). Indeed. I meant that every app will have access to these extensions, without relying on a myriad of client side libraries, all of which do things slightly diferently.
  • I think X applications aren't written to handle an event that lets them know that the physical screen size has changed.

    However, this shouldn't be a big problem, since, for the most part, only the window manager needs to know. The X server could send an "physical screen size changed" event to the window manager and the window manager would rearrange the windows to fit onto the new screen size. If the X server disables edge scrolling, the effect is the same as on Windows; whether the off screen pixels are still stored or not is not user visible in any important way.

    Windows actually has a lot more of those kinds of "legacy" assumptions built in; for example, many Windows applications cannot conceive of resizing or moving their main window while a modal dialog is up or while they are busy computing. I'll take the fixed screen size assumption over that any day...

  • Is there any indication that this is more than vaporware? It's easy to promise a consistent, efficient 2D graphics API with transparency support, anti-aliasing, and hardware acceleration, it's a lot harder to deliver on it.
  • Actually you are right. Premultiplied alpha compositing can be done with math like the following (G is gamma, F is premulitiplied foreground, B is background, A is alpha, a^b is pow(a,b)):

    (F^G*A^(G-1)+B^G*(1-A))^(1/G)

    And it does seem that without hardware support this can be really slow. It might be best to do whatever the hardware does as fast as possible, but not define the exact results of alpha compositing so that such changes are doable.

    It also appears that your "mask" is in fact a non-premultiplied alpha channel. Thus both are provided by the design.

    I am still really confused by the design, though. Is a "picture" in effect a graphics context?

    I also want to state why I feel it is very important that the extension do everything with a single graphics context. Many people have said "use GLX" or "use DPS". But I need the ability to write a library that does something like take a gc and set the foreground color to a special value. This is not possible when there are 3 (or 4) different types of gc.

    An alternative is to add the missing stuff to GLX: add antialisaed fonts, clipping, and perhaps a few other things to OpenGL and it can be used for all the graphics, and only a single gc object needs to be worried about (though I would also like the ability to switch the gc between windows).

  • What he's saying is if you do anti-aliased text the "old way" of rendering pixmaps and pushing them out, there's no longer any "text" to be selected in the clipboard. It's just an image.

    If that's what he's saying, then he's very confused.

    On the X server there's no "text" to be selected on the clipboard no matter how you rendered it on the screen - there's just pixels. There is no guarantee that the text characters sent over the wire in a "draw text" request are somehow "remembered" by the X server, and, even if the X server happens to remember them, there's no X request to fetch those characters back (you can perhaps read the pixels back, but not the text).

    As I said at least once, selection is done on the client, though, so whether the server was told to put pixels on the screen by a "draw text" request or was just handed the pixels by the client is irrelevant.

    The client has to keep a copy of the text, which it can do regardless of whether it renders that text on the screen by sending the X server one or more "draw text" requests or by converting it to pixels internally and sending those pixels over the wire; that copy is what's selected in the clipboard (or, rather, what's supplied if somebody asks the client for the contents of the clipboard).

  • But wouldn't it be better to go help Bernlin Consortium instead of try to put lipstick on a pig?

    Well, first of all, I don't know whether there's a universal consensus that the X Rendering Extension constitutes "[putting] lipstick on a pig"; the fact that a person, or even that many people, happen to believe so doesn't ipso facto make it so.

    Second of all, "help[ing] the Berlin Consortium" doesn't help all the zillions of X-based applications and toolkits and... that are our there now; to quote the Berlin Vs. X. FAQ [berlin-consortium.org]:

    Note that Berlin is still in development. As of this writing Berlin is only useful for demos (really cool demos though :) while the X Window System is in full production use by many users.

    Even if, when completed, Berlin is superior even to X with the Rendering Extension (which might well be the case), if the X Rendering Extension comes out significantly earlier than a version of Berlin sufficient to replace X, dumping the X Rendering Extension work and going off to work on Berlin may be a case of "the best is the enemy of the good".

    Maybe Berlin would come out sooner if everybody quit working on X - but

    1. you might still get better rendering sooner by doing the X Rendering Extension, and this might still make people, on the whole, better off;
    2. if herding programmers is like herding cats, herding free-software programs is, I suspect, like herding feral cats, so there's no guarantee that by exhorting people to stop working on project A and, instead, work on its competitor B one will actually achieve this goal (note that, for "A" and "B" one can substitute "KDE", "GNOME", "Linux", "*BSD", etc., etc.).

    I think that both the X Rendering Extension and Berlin are interesting projects; I'm unconvinced that it'd be a Good Thing if either were abandoned, as, if nothing else, they mean that people are thinking about More Than One Way Of Doing Things, which could lead to a group working on project A picking up Good Ideas from the group working on project B.

  • This is a good idea. The window manager can then do any effect that's wanted (including keeping the current behavior of not moving any windows). A useful intermediate effect would be to not move anything, but change the size of any "maximized" windows.

    It is true that programs will not know the screen size correctly unless they pay attention to this event. But this is probably not going to break things too badly. Programs just use it to set maximum window size and to force menus/etc to be on-screen. In many cases the window manager will override them anyways.

  • With my OnATopp tool found on http://unfix.org/projects/onatopp/ [unfix.org] you can easily set Alpha Blending for every window and also the OnATopp bit for letting the window be kept on-top.

    Check out this screenshot [unfix.org] for a cool example. Unfortunatly I didn't have a Famke Janssen background ready, but Gail Porter will do :)

  • Berlin isn't either backward compatable with anything but itself right?

    Well, in the Berlin FAQ [berlin-consortium.org], they say:

    Will there be an X compatibility layer?

    Several members of the project have expressed an intrest in such a thing. In theory it won't be too hard -- making it as efficient as XF86 might be a challenge, but assuming we can provide GGI visuals to XF86/GGI (which already works fine) then there's a good chance it'll show up early on in our releases. Of course, if you're perfectly satisfied with X, XF86 will likely serve you better, but we do recognize the significant utility of X compatibility.

    so they at least realize that it will probably ultimately need to be X-compatible - there are just too many X applications out there for them to treat X as irrelevant.

    It may not have X support now, but, in that FAQ, they quite explicitly say that it's not ready for prime time yet:

    Who should install Berlin?

    At the moment Berlin in NOT ueful to normal people. We consider ourself to be a test-ground for UI-development. This does not mean, that we do not want "normal people" to play around with our work! It just means that we have NO real-world applications yet, not even a terminal with the features you know from XTerm (or other Terminals like rxvt, gnome-terminal, ...).

    so the fact that it currently lacks X compatibility may not really mean that much.

  • "Even though it is nice that X11 is made so extensible, this still means that a standard X11 setup uses none of these extentions"

    That depends on what you mean by a "standard X11 setup." AFAIK, the "Shape" extension to X11 is pretty darn common, so in effect that would be a de facto standard part of an X setup. In short, a so-called "standard" X setup could very well actually be plain X + several common extensions.
  • Guess what... simply check the link [microsoft.com] at the top of the article mentioned and voila... yes it's already partially in Windows 2k. Or check my other reply for a cool example of it :)
  • by Guy Harris ( 3803 ) <guy@alum.mit.edu> on Sunday August 06, 2000 @01:01AM (#876793)
    At the moment if you move to rendering anti-aliased text you have to add the clipboard support in as well by hand. Of course, a reasonable 'AA text library' would do this for you I suppose.

    Are you asserting here that anti-aliased text would somehow be stored differently in the clipboard than non-anti-aliased text? I have yet to see any indication that it would have to be; if you're cutting from a word processor, the character sizes and fonts might be available through the clipboard when using a format that includes it (although it'd probably also be made available as Boring ASCII Text, or Boring ISO 8859/n Text, or Boring JIS Text, or Boring UTF-8 Text, or...), but I wouldn't see an indication of whether the text happened to be rendered anti-aliased or not being made available via the clipboard.

    (The fact that the text might have been rendered on the screen by sending raw pixels rather than sending text is irrelevant, given that, as I said, the client handles the cutting and pasting, not the server, and the client has the characters available.)

    I meant that every app will have access to these extensions

    ...which, of course, doesn't mean that they necessarily will use them, unless they're modified to use them, or the toolkit they use is modified to use them.

  • by jetson123 ( 13128 ) on Sunday August 06, 2000 @01:12AM (#876794)
    Spitzak's points are valid ones, but what he proposes is a major additional effort. Is that effort justified?

    For most applications, X11 works OK. If it gets some support for anti-aliasing and compositing, people will be able to do a lot more with it than they can now. Keith's effort seems like a very rational starting point for that: add a small set of server functionalities that addresses the core problems people have.

    If X11 additionally got paths, floating point coordinates, and other features in the server, would that significantly expand the application areas for X11? Would it allow existing applications to be speeded up in some important way? If people want those kinds of features, why aren't they using the existing DisplayPostscript extension to X11, already donated by IBM? And is it worth adding a complete 2D rendering API when 3D APIs already provide coordinate transformations, compositing, and all the other features, hardware accelerated, and available on pretty much all platforms, for those applications that really need them?

    I can't claim to know the answers; my intuition is that the more minimalist approach Keith is taking is probably the better one for now. But whatever approach might be better in the end, unless significant additional resources materialize, I suspect that is all that realistically can happen. Any volunteers?

  • There is a slight fault in your reasoning.
    The X server is a single-threaded application right now, and turning it multi-thread would be VERY hard work.
    If it was in charge do do computation-intensive tasks, while performing them it would stop responding at all. I wouldn't like that much, would you?

    From a "perspective" point of view: in the scenario you're presenting (application server plus x-terminals), the app. server is usually a "big iron", while the Xterms are tiny systems. Moving a lot of computational load unto them would worsen the usage experience a lot, IMHO.
  • by Otis_INF ( 130595 ) on Sunday August 06, 2000 @01:52AM (#876796) Homepage
    It's perhaps wise to check out what your common 'enemy' :) has cooked up in a (old but still good read) document about the next generation GDI (win32's gui rendering subsystem). Perhaps some things can be included in the rendering system currently in the works for XFree.

    http://www.microsoft.com/HWDEV/vid eo/GDInext.htm [microsoft.com]
    --

  • I think that there are plenty of people that are watching the development of Berlin with interest. My knowledge of C doesn't really progress much beyond "helloworld.c" and I haven't found the time to learn more, so can't currently contribute to Berlin, but think that it has a real future - they're doing something that is new and innovative (in the real, non-Microsoft meaning). While I think that this addition to X is great in that it will overcome the current limitations, there is nothing wrong from an alternative, especially if it turns out to be better in the long term.

    The problem that Berlin will face is that too many people equate Linux graphics with X, when I think they should be concentrating on getting a lower level accelerated framework, be it FBcon, or even KGI. We need some form of accelerated display that doesn't require root access and all the associated security implications that this includes.
  • 1) Whether or not the X Extension is trying to compete with Berlin, it is. Simply by their existance, they are competing.
    2) What people don't seem to understand is that OSS isn't the magic bullet. Sure there is a near infinate number of developers, but the realities of the market are still present. There is only so much public interest, whether or not a product is Open Source. Public interest is ultimately what defines who wins and who loses. Great projects die because they don't have enough public interest. Say the X extension results in a rendering interface even half as good as Berlin. Now you've got a less superior product. Certianly a more bloated product (because it incurs the bloat of regular X, plus it's own protocol) and one that really is cobled together and "hackish." However, it has backwards comptability, and by that sole trait will win. What happens then? Probably Berlin dies. By stealing Berlin's turf, X leaves Berlin with no reason for existance.
    3) Competition isn't the magic bullet either. Competition only works when to products are compatible. Take a look around the software world instead of thinking idealistically. There are a lot of graphics programs competing. Why? Because they are all comptabile with each other. Then, look at Office suites. Notice how much fewer products there are in this space. Why, less comptability. Take a look at operating systems? Notice the fact that there are no competing products. Why? No comptability. When there is no comptability, userbase is everything. Look all over the software world. Everywhere you can see products suceeding soley based on userbase. Wordperfect is a better word processor than Word? Who won? OS/2 is better than Windows. Who won? Why? There is always a winner and a loser, eventually. OSS slows the ending, but doesn't stop it. Ultimately one will win. By introducing competition to an interesting product, then the OSS community is hurting itself. Things would be different if both were competing on the same level, but they aren't. Soley because X has more comptability, it will win. No matter which is the superior product. By supporting one or the other, there are bigger implications than just one project getting more code time. After all, code time is infinate. Interest is not. By drawing interest away from Berlin, the X extension is almost guarenting its demise.
  • Signing up to help the Berlin guys would be difficult; getting up to speed with them would require more than good C++ knowledge. You also need to know CORBA really well, and the implementation of that standard they are using.
  • >The Berling Consortium has all these neat little features (blending,
    >rotations, AA-fonts..), but no one ever pays attention to them...

    For a very good reason. They're walking the same road the Amiga designers did with their approach to the Amiga graphics subsytem. Very pretty and cool to look at untill you realized it was a one-way ticket to a dead end. Berlin isn't either backward compatable with anything but itself right? No thanks.
  • Without antialiasing X is a non starter for a whole range of publishing apps

    No, it means the applications need to render fonts themselves. This sucks, but it's not a show-stopper.

    and in all the other apps, MOST PEOPLE THINK IT LOOKS LIKE SHIT

    xterm is another app. I haven't heard anybody complain about the fonts in xterm.

    Resorting to the cop-out that "well at low resolutions, antialiasing just doesn't work as intended" is a weaseling , pussy-ass, excuse for a fatally obsolescent system.

    Yes it is. I didn't intend it as an excuse.

    I don't give a fuck about your low res display, nor does the rest of the word.

    100 dpi is not high resolution. Or do you really have a 300 dpi monitor?

  • The server should handle abstracted states. For example, there's no particular reason why an audio (blind) user and a visual user can't share a desktop with each other (think teacher>student situations where mirroring a desktop is important).

    So, by taking this ideal into play the server should send polygons and such as coordinates - not the visual rasterised images.

    The easiest way I can think of explaining where the line should be drawn is by imagining users with different needs and how they would interact with the server.

  • Comment removed based on user account deletion
  • by Anonymous Coward
    Libart is related to GGI is related to Berlin.
  • Heh. I always considered that a feature of X, not a fault. It's nice to be able to "zoom in" onto something and not have to worry that all your windows will become resized weirdly and that you'll have to rearrange them.

    Also, it allows you to look at a window full screen even if the program wasn't designed for it. That's useful for games and video.

  • woo hoo anti-aliasing!

    now text in X can look as pretty as in windows.
  • Placing the primitive rendering routines inside the X server means I can use hardware acceleration. Plus, sending higher-level commands means X will work over a network again. Ever run Enlightenment across the net?
  • .. But, has a long way to go. Honestly, I don't see anything different. What is so differant about what hes doing ?
    until (succeed) try { again(); }
  • by A1kmm ( 218902 ) on Saturday August 05, 2000 @11:11PM (#876809)
    The extension raises an interesting issue
    This extension is starting to shift some of the load onto the client side:
    Rendering geometric figures is accomplished by client-side tesselation into either triangles or trapezoids. Text is drawn by loading glyphs into the server and rendering sets of them.
    In most cases, the client IS the same machine as the server, but in some cases, for example if I run an X-program on my shell account and the X-server locally, it means that the shell account starts to do the hard part of the rendering.
    The shell acount might run X programs for 50 different users, but each X-server probably serves no more than a few screens, so I think it should rightfully be server-side.
  • by crlf ( 131465 ) on Saturday August 05, 2000 @11:11PM (#876810)
    The Berling Consortium [sourceforge.net] has all these neat little features (blending, rotations, AA-fonts..), but no one ever pays attention to them...

    It should be noted that Berlin uses a completely different approach to visuals than anything X ever had. It takes the approach that the application never need know or assume what the visual will look like. 'Widget's for lack of a better term are coded modularly into the server, creating a single unique interface for all applications to call upon. No more need for Qt/Gtk wars, just pure simplification. Hell, no more SQUARE windows like X is limited to. (anything none-square is a hack...)

    I wish these guys would get more support and maybe one day it'd even be accelerated :)

  • by Anonymous Coward
    I hate anti-aliasing. It is ugly and makes small fonts totally unreadable. I hate alpha-blending as well, it makes all textures look like plastic. We need displays with huge resolutions, not kludges that make stuff actually uglier.
  • At less than 150 dpi, anti-aliasing text gives most people a headache when used in long passages. When your display has higher resolution than that, it actually helps readability.

    Besides, image composition is for more than anti-aliasing; it forms the basis of an entirely new rendering model that replace 25 year old raster operations useful only on monochrome displays with operations that make sense in color.

  • Thank God for this timely work. I can only hope other developers embrace it and start incorporating it (when available) into GDK and Qt libraries. Fonts have always sucked in X unless programs tried to anti-alias 'in vitro' which is a waste of good processing cycles. I'm guessing this might also take advantage of more accellerated hardware. Keep up the good work!!!
  • by Anonymous Coward
    X seems to be able to have only *ONE* unchangeble virtual screen size value per session - it's set by defult to the screen resolution at startup or by the value of the "Virtual" configuration entry. This seems rather "picky" ...

    Don't you hate it when you use Ctrl Alt KP- to set the X display to a lower resolution (so, say, you can actually read a web page "designed" in 8pt text) and the screens Virtual size in pixels stays the same so the desktop suddenly is "off the edge" of the screen. The "screen size" of the desktop increases proportional to the decrease in resolution in order to keep the number pixels constant the size of the virtual screen increases.

    eg: decreasing to 800x600

    1280x1024
    --------- * (Width x Height)
    800x600

    The same thing happens in reverse when increasing the resolution beyond that set in the Virtual line of the config file.

    Why can't X just change the resolution and leave everything on the screen the way it should be - like Mac Win and BeOS do. Or (gaak) is this a window manager issue ... sigh.
  • I'd like to congratulate these fine developers. Not because of the technical merit of the project (though it does have merit), but because instead of whining about "X sucks" or "X needs to be replaced" or "Berlin Berlin Berlin Berlin Berlin", they're actually doing something to improve X. Kudos to them. This is how results are delivered in the open source world.

    "Just do it." -- Linus Torvalds (paraphrasing Nike)

    "Shut up and show me the code." -- Eric Raymond


    --
  • by Pflipp ( 130638 )
    Hi,

    One thing I have always wondered, is if the X Consortium is still willing to change the specs of the X Window System to address current problems.

    Most problems today are being addressed (we have seen this story, and recently the one of Jim Gettys who believes X is ideal for pocket devices, if only some of the "bloat" code that slipped into XFree over the years would be revisited), if only because of the popularity of Linux for graphics-intensive tasks.

    But most of the solutions provided are extentions to X11. Even though it is nice that X11 is made so extensible, this still means that a standard X11 setup uses none of these extentions, practically bringing us back to the mainframe ages: even transparency (heavily relied upon by some window managers, I guess) seems to be such an extention.

    Now in my humble opinion, the X Consortium could release a new spec, in which they call the most well-known and useful extentions more or less official, and in which they would probably provide some more solutions as well. This can be done without breaking radically with current X implementations, thanks to the extension system, while it would take away the "officially, this can't be done with X" complaints.

    (Maybe X12 would be the wrong name, because it would be a mere upgrade to the X11 spec, with backwards compatibility, so something like X11R7 or X11R6.5?)

    Would the X Consortium still consider changes in their specs, or have they merely become the maintaners of a historical document? I am just asking because during the young times I have been with UNIX, it has always been X11R6.4 (or maybe X11R6.3 too?). So I actually don't know how active the Consortium is.

    It's... It's...
  • Are you asserting here that anti-aliased text would somehow be stored differently in the clipboard than non-anti-aliased text?

    What he's saying is if you do anti-aliased text the "old way" of rendering pixmaps and pushing them out, there's no longer any "text" to be selected in the clipboard. It's just an image.

    :wq!

  • now text in X can look as pretty as in windows.

    Windows does not alpha blend text. Mac does not alpha blend text.

    Antialiasing without alpha blending is substantially worse than with alpha blending.

    Windows has great fonts. Great fonts are bought, and hardly ever given freely (a few notable exceptions occur in the case of TeX).

    Alpha blending and antialiasing will help X font looks quite a bit. But good fonts help a lot too. And Microsoft has bought a lot of good fonts.
  • But wouldn't it be better to go help Bernlin Consortium instead of try to put lipstick on a pig?
  • Why not set X up to use TeX fonts? That should be possible; everything's open that needs to be open...
  • Some people like it. Like me, for instance. When I zoom in, I want just that - to zoom in. I use it basicly for a cheap xmag. Actually, I usually run X where at the largest resolution (this damn TNT card won't run 24bit color, so it's not as high as I'd like) is less than the screen size. Gives me more window room. Just 'cause it's not the same as windoze or what some people call "user friendly" don't mean that it's bad.
  • I disagree. Since no-one in thier right mind codes directly on top of X and uses a toolkit like GTK or Qt, getting a large (and growing) amount of software over to Berlin would mostly be a matter of porting GTK and Qt to Berlin and then recompiling.

    Yes thanks,

    --
    Simon
  • I kinda disagree with you when you say:

    Berlin uses CORBA so thus remote corba objects thus you can use your own widget set.

    Berlin uses a 'visual' hierarchy of objects within the server. I agree that custom widget sets can be made to work alongside with the server, but hacking them in to work from the x-client is *not* what Berlin was intended to do. The one problem with this kind of ideology is that there'll be no easy way to have two widget sets along side each other on the same screen.

    Although I may be wrong or they may have changed this since last I heard (a year ago?).

  • Ok, I'm dumb...I understand what *brightness* is, but what exactly is "gamma"? I've seen these terms used independently, so I assume they are not exactly the same thing?
  • One option if to borrow TT fonts might be to make a format that uses the same parameters, but simply switches the ordering, and/or compresses the data. Then make a utility that converts from TT to freeTT. Freetype may already be doing something similar, I don't know.

    The legalities of this may be shaky, but the risks of being successfully sued aren't that high.

  • Under the X version number model, the number would be updated to X12 only if it was incompatible with X11. X.org (the current replacement for the X Consortium) isn't likely to do that any time soon - they are still working on new extensions and updates to the specs though.


    Besides, leaving non-essential bits as extensions makes projects like putting an Xserver on a handheld easier, because they don't have to support them, and clients can easily check whether or not they do.

  • AFAIK,

    all CRTs have an exponential (or is it logarithmic?) response function. (Do LCDs too?). Anyway, they don't always have the same constant factor in the response function. So while 255 is 100% brightness, 50% brightness may be 160 instead of 128. Or maybe 80. You calculate this from the gamma, which controls how fast the exponential grows.

    Having just the one gamma is an oversimplification of course. You'd really want all three R G B, and for really accurate color matching you'd want to work in maximum luminosity and what not. But just the one value is way better than none.

    Johan
  • When this level of abstraction becomes a performance problem on the client side, additional pieces can be added to the server. A significant feature of this extension is that missing pieces can be emulated on the client side during any transitional period and still gain at least some acceleration from the hardware.

    Existing applications actually do quite a bit more work than you realize; they're frequently doing all of the rasterization and sending the resulting images to the server for display. This extension helps share that burder between client and server.

  • Most recently on May 7th, in this article:
    http://slashdot.org/articles/00/05/07/2316257.sh tml
    Pay particular attention to comment #275 as it is a concrete
    suggestion for what a new rendering model should support.

    I'm no expert on graphics rendering models or on the X Windows System and cannot comment on the merits of this new rendering model versus any other model.
    I do have this to say - if there is to be a major re-structuring of the X Windows rendering model, it should be designed and architected by a group of people who work together to design a system that will last for ten more years.
    It is great that someone is doing real work to address X's very real shortcomings. I just want to make sure that any new rendering model is truly architected to last for as long as possible.
    The more well informed and experienced people that get involved in the design, the better off we will all be.
  • by PhilA ( 18734 ) on Saturday August 05, 2000 @11:26PM (#876830) Homepage
    Well, anti-aliased text is actually much more readable in general than standard text. On low res displays, it makes it possible to read anything at all (TV is a good example.), and on higher res displays it makes a huge difference to the apparent quality of the text. Using anti-alising and sub-pixel glyph placement you can also eliminate the odd 'jumpiness' you get when the width of the font glyphs interferes with the pixel spacing of the display. You can see this most with rotated text: With non-antialised text, the baseline of the text appears to shift up and down, with anti-aliased text it's a straight line And transparency and alpha compositing make decent colour vector graphics worth doing :) Now, you can do all this at the moment if you want to by rendering to a pixmap on the client side, copying the pixmap to the Xserver and exposing it. Unsurprisingly this can be *really* slow. It also means that if you're rendering anti-alised text then you can't cut+paste it! Not Good. Putting all these primitives in the Xserver will result in *every* app being able to use these new features efficiently. I can't wait...
  • What's really sobering is that most 2D graphics systems designed since then use rasterops. Part of that is the conservative nature of system programmers, but it's also true that older systems just couldn't do compositing in software with any reasonable speed.
  • by jetson123 ( 13128 ) on Saturday August 05, 2000 @11:30PM (#876832)
    'Widget's for lack of a better term are coded modularly into the server, creating a single unique interface for all applications to call upon. No more need for Qt/Gtk wars, just pure simplification.

    Win32 has its own, native widget set, and that hasn't stopped people from porting Gtk, Qt, Tcl/Tk, wxWindows, and lots of other toolkits to it. The same will happen with Berlin if the project produces a usable windowing system at all.

    It should be noted that Berlin uses a completely different approach to visuals than anything X ever had. It takes the approach that the application never need know or assume what the visual will look like.

    The purpose of visuals in X isn't to make the programmer's life miserable (even if they do that on occasion) but because there was a technical need for it. There are other tradeoffs you can make: Win32 and NeWS took different approaches, with different advantages and problems. Berlin won't be able to avoid the issue either, since presumably applications will be able to draw raw 2D graphics under it one way or another. If it automates the visual management, that's one choice, good for some applications, bad for others.

  • This extension is starting to shift some of the load onto the client side Wrong. It starts to shift things to the server side.

    You seem to think that text should be rendered by the client using the new primitives. This would be a step back. But this is just the core, lower part of the new rendering engine, the introduction of new primitives (which can be hardware-accelareted) and an alpha-channel.

    Once this infrastructure is inplace, higher level things, like text-api, can start to use it. It has all to be a new api though (X extensions), since IIRC the old api ties text to 2 color bitmaps.

    I guess to grand overall back of the mind strategy is to make now X-extentions for all things that have to be improved, then when every toolkit and many applications use only the extensions, we can start thinking about X12 and doing away with the old cruft. At least, that's what i hope...


  • My knowledge of C doesn't really progress much beyond "helloworld.c"
    Actually Berlin is implemented in C++.

    Anyway, even if you feel your programming skills are not up to par for a project of this scale, go ahead and volunteer to the project leader. There are plenty of other ways you can help (documentation, testing, site admin...)

    -----
  • So? Doesn't everybody use the fonts from some old windows cd for their X server anyway?
  • I kept hearing these promises that DRI was supposed to kill sgi boxes with a tnt2 or something. So is this a replacement?
  • anti-aliased text is actually much more readable in general than standard text.

    Here's an experiment to do: Go to a Windows machine, run any program with a standard single line text input widget, type some gibberish, and take a good look at the font. Not anti-aliased, right? (Perhaps in some configurations, it may be, but I believe not by default.) Hmm.

    At low resolutions, and allowing a choice of text size and alignment that suits the resolution, it is non-anti-aliased text that looks far clearer. Anti-aliased text at low resolutions looks dim and fuzzy. However, as you point out, it is a huge win for WYSIWYG text, when arbitrary positioning, size, and perhaps rotation must be supported.

  • And what the other person is saying, is if you have the text to render to the pixmap, you can just as easily export it through the selection
    system.

    It's really no different than writing text to
    any other window.
  • Why not set X up to use TeX fonts? That should be possible; everything's open that needs to be open...

    I've done that. Which fonts would you like to use, and for what purpose ??

    It is pretty easy to take tools like mkfontdir and type1inst and take the available Type1 versions of the TeX fonts, add them to your X fontpath (xset +fp ~/fonts/), and use them in whatever.

    I personally like the cmtex series for fixed width terminal fonts. Of course, the font rasterizer is also a large problem (or rather, its lack of antialiasing and alpha blending).
  • So? Doesn't everybody use the fonts from some old windows cd for their X server anyway?

    Windows fonts are TrueType fonts. True Type font technology, while largely being a subset of metafont technology, is patented by Apple, and it is possible (although it currently seems unlikely) that Apple will call those patents into action.

    You can, however, convert True Type fonts into very large Type1 fonts with the ttf2pt1 package. Then they can be used by ghostscript (provided you place them in a font directory, use type1inst and mkfontdir, and edit your gs Fontmap). They can also be used by X if you rebuild the X font loader (it chokes on large fonts without a rebuild - instructions on the ttf2pt1 web site). Of course this still doesn't get you antialiasing, but it does get you some really nice fonts. And that is a large part of the problem with fonts under X. And we know that everyone loves building X and has several hundred megs just waiting for the X source code.

    X also now comes with Freetype font rasterizer, so native TrueType fonts can be used. There is really no sign of Apple pulling the plug on it yet, but they can do this whenever they like. Don't forget Apple and Windows dominate TrueType font usage, and presumably Microsoft is paying a lot of money to use the patented technology.

  • by raph ( 3148 ) on Sunday August 06, 2000 @07:46AM (#876842) Homepage
    Now that this is posted to Slashdot, I thought people might be interested to know how this extension relates to Libart [artofcode.com], which, after all, shares many of the same goals of providing high performance 2D rendering.

    Libart and the Render extension are both fairly low-level mechanisms for 2D rendering. Libart nails down the data structures and buffer layouts (24-bit packed RGB for most work), which has desirable consequences for both performance and simplicity. On the other hand, Render is really optimized for the case where there is hardware support for the primitives.

    In many ways, Render is even lower level than Libart. For example, Libart handles vector paths, stroke outline, miters, line dashing, and so on. Render only handles low-level primitives such as triangles and trapezoids. To render more complex shapes, you have to tesselate them into triangles client-side before sending them to the screen.

    Neither of these projects currently provides an ideal high-level API for application developers. While it will be possible to write directly to the Render layer, it's probably too much of an impedance mismatch for most applications. Similarly, the current Libart API doesn't provide any way to use the hardware acceleration that Render provides.

    Thus, I'm working on a slightly higher level API for Libart, one with basically the same semantics as the existing API, but with the actual representations of data structures abstracted. Thus, a Libart+ "shape" can be a bezier path, a vector path, an SVP (sorted vector path), or a pile of triangles optimized for the Render extension. Similarly, a "picture" can be a packed RGB or RGBA buffer as now, or may be a handle to a pixel buffer actually living on the video card, accessible through the Render extension.

    I want this to be a beautiful API for applications to write to. The main advantage is that it can automatically negotiate which functions should be performed server-side and which client-side. For example, no video cards today can actually deal with bezier paths directly. If this ever changes, then Keith can add the relevant stuff to the Render extension, I can add the code to Libart+ to recognize it, and apps will automatically win.

    Further, this architecture provides for richer functionality than Render provides, without loss of performance in the common case. Right now, I'm adding the PDF 1.4 blend modes (Multiply, Overlay, Hard Light, Soft Light, etc) to Libart. These blending modes just get implemented in software.

    Lastly, I have to say that I think Keith is making exactly the right decisions to keep Render low-level, lean, and simple. I have great confidence that he will ship something soon that provides useful access to hardware acceleration. It is refreshing to see well-engineered stuff coming out of the X world again, after many years of bloated, nearly useless crap from the X consortium and The Open Group. Gambai!
  • Why ? Because back when X was designed there wasn't any need to run less than maximum resolution so they coded the screen resolution into the initial protocol sequence between server and client.

    Changing it now would break all old clients. Unless it was done as an extension, and even then if you were running any old client, changing resolutions could cause problems for that client.

    Oh your card doesn't support the new resolution that you requested in the current depth. BadValue.

  • by spitzak ( 4019 ) on Saturday August 05, 2000 @11:50PM (#876844) Homepage
    The use of linear math to do the compositing should be replaced with something that understands the gamma of the screen. This would result in much better display than Flash or any MicroSoft offerings.

    Representing the range of brightness of a screen as 8 bits of intensity is actually very efficient and almost exactly matches human visual capability, if you use an exponential version where brightness(N+1)/brightness(N) is a constant for all 8-bit values N. This means brighness is a function pow(N,1/G) where G is a constant called "gamma". If you normalize N to be 0-1 then G is about 2.2.

    Quite by accident this brightness function is exactly what cheap CRT's that are on PC's do when fed the linear conversion from D/A converters. So the hardware is actually perfect.

    If the screen has a gamma value of G the correct math for adding images A and B so the result is the sum of brightnesses is pow(pow(A,G)+pow(B,G),1/G). The proper math for multiplying A by a mask M is pow(pow(A,G)*M,1/G).

    Fortunately the data is 8 bits and thus both the above functions can be provided by 256x256 lookup tables. You can also use 256-entry tables for the two pow functions. Assumming G==2 may allow a lot of other math tricks as well, and is plenty accurate enough for vision.

    The biggest problem with their design is that they specified premultiplied. This prevents the above math from being applied correctly, also gamma introduces questions about exactly what value you premultiply by.

    I would recommend that they reformat their stuff to describe everything in an unpremultiplied area, and that all math is in intensities, not numeric values. The gamma is a constant built into the server and frozen at 2.2 or 2.0.

    There can be a "premultiplied" flag in a picture. This should be used to fix "bad premultiply" that is produced by most (all?) 3D renderers, where the colors are in a gamma space but have been linearily multiplied by the alpha. To unpremultiply these, replace R with A?(pow(R,G)/A,1/G):R and same for G and B, leave A alone, and continue with the composite.

  • by keithp ( 139560 ) on Saturday August 05, 2000 @11:52PM (#876845) Homepage
    I went back and reread that comment again; the older article was from my initial call-to-arms and I had only started investigating what a few system would look like. With the help of comments like that, along with the assistance of lots of people, I found plenty of the ideas I'd put forth were wrong.

    I disagree with your desire to keep the pixel values and the raster ops visible.

    Yup, I was wrong on that one; raster ops are replaced with compositing operators on color values.

    It may be important to support "premultiplied" alpha compositing

    Reading Jim Blinn's work along with Porter & Duff convinced me that premultiplied alpha was the "one true representation". You can still use non-premultiplied alphas if you like; the extension can be twisted to make that work, it's just that premultiplied alpha is the "obvious" way to do things.

    I think you *should* use IEEE 32-bit numbers and put the "transformation" into the server.

    Maybe someday, but I'm sticking with client-side tesselation for now. The number of 2D geometric objects drawn on the screen is miniscule today; maybe when we're drawing thousands it will make sense to move some of that across the wire. The neat part is that we can do that transparent to the application by tesselating in the library for servers which don't support the new stuff.

    Having the transformation in the server is necessary for supporting font rasterizers and to take advantage of hardware acceleration for transforming images.

    Font rasterization is now the client's problem. The extension does support affine transformations of images using fixed point coordinates; it's hard to imagine what floating point would add to that.

    I do think paths should be in the server, because otherwise people will write wrapper libraries that will be slower than doing it in the server.

    Given that hardware requires tesselation to triangles, I believe there isn't a significant performance advantage to doing that stage in the server. The key here is getting the huge hardware acceleration speed increase and not worrying to much the small speedups from shifting work from one general purpose CPU to another.

    I do not want the Windoze-style 12-parameter call to sepecify a font,

    By moving the rasterization to the client side, we can experiment with lots of different font naming schemes to see what we like; there is no longer a performance penalty for using non-"native" fonts.

    I just wrote my first FreeType application today; that API seems much nicer than either Windows or XLFD.

    Again, I STRONGLY disagree with the conventional wisdom that the only fast way to do images is to have the program know the details of the hardware.

    With a color-based rendering model, it's now obvious how to transform color data from one format to another. The extension transparently converts image data.

    Make a new type of "gc" that includes the damn window!

    It's called a Picture.

  • by keithp ( 139560 ) on Saturday August 05, 2000 @11:59PM (#876846) Homepage
    Yeah, it would be nice to handle gamma correctly, the problem is I haven't found a single graphics card which accelerates this operation. And doing it in software is really slow.

    When hardware exists to accelerate this, we can add it in. Until then, there isn't much reason to make the X server CPU suffer through this.

    I don't see how premultiplied alphas have any effect on this; Jim Blinn's alpha compositing articles describe using premultiplied alphas along with gamma-corrected compositing. It turns out you need to gamma correct the alpha component to make the images blend properly in any case. Go check out his 'Dirty Pixels' book, or the original article from November 1994 on this issue.

  • The point of my post was this - If someone is designing a new rendering model for the X Windows System, they need to take a very long term view as to the capabilities of the system, rather than just adding the features that are missing from any current rendering system. There are few things that serious Linux/Unix critics complain about more than X's rendering shortcoming, but if a solution to these problems is promulgated that does not take into account potential future developments in graphics hardware and software, it will do little good.

    As far as my supposed "Karma Whoring" goes, if I was truly a Karma whore, I'd have alot more Karma! I read /. daily, and have since the early days of the site, but I post rarely and moderate even less often. Normally, anything I would want to say is said by someone else before I get a chance to post, and I just can't be bothered with the moderation system.

    I do think it is valid to post a link to an older article that addresses the same issue - many of the arguments that will be made in response to this article have been made before, but not all readers may be aware of them. I think that many good proposals were made in the old article, and people can benefit from re-reading them.

    I'm sorry I didn't post the article reference as a link. Next time I promise I will!
  • Why not move old API to extensions and new API to the X server core?

    Well, yes, for the implementation side that is I guess the goal for Xfree5

    But I meant the spec-side, API + wire protocol. There, you have to be backwards compatible and use extentions.

    By the way, just read on the mailinglist [xfree86.org] that Keith already hacked in some font support, so all the key features seem to be there for a demo. Exciting to watch...

  • Thanks Keith - I appreciate your detailed response. I just want to encourage a wide-ranging discussion of the design of a new rendering model. As I said before, this is not an area I have much expertise in, but I thought that the writer of the original comment had some interesting-sounding ideas. As I stated in another comment, I think that any new new rendering system should add all the features that are missing in the old model, but should also take as long a view to future graphics system developments as possible.
    Thanks for making a great start on the code. Its about time that someone has actually done some coding rather than just bitching about why things aren't better.

"The one charm of marriage is that it makes a life of deception a neccessity." - Oscar Wilde

Working...