Slashdot Mirror


User: Olivier+Galibert

Olivier+Galibert's activity in the archive.

Stories
0
Comments
139
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 139

  1. Re:Maryland UCITA and DVD's? on Red Hat Working w/UCITA Backers to Change Law · · Score: 1

    UCITA is state law, DMCA is federal law, federal law trumps state law. So no, no matter what.

    OG.

  2. Tile-based rendering, strenghs and weaknesses on Tile Based Rendering and Accelerated 3D · · Score: 5
    The simple idea behind tile-based rendering is to divide the screen into square patches (8x8 or 16x16 usually) and, for each patch, find which of the triangles intersect the patch, do a quick depth sort to detect complete occlusions, and draw.

    There is a good article on it, as applied to the powervr (which is using the same kind of architecture) at http://www.ping.be/powervr/PVRSGRendMain.htm. As others already said, you can see the results on the Dreamcast, or on the arcade version, the Naomi.

    The strenghts are obvious:

    • Lower fillrate required because of the per-petch occulted triangles elimination
    • The currently-rendered tile memory can be on-die, L1-grade, releasing the bandwitch for texture reading

    The weaknesses are a little less obvious:

    • Rendering start delayed because it requires having all the triangles available. Can be somewhat hidden by multi-buffering
    • Alpha-blending slows things down hard, because it increases the required fillrate very fast, and these cards are designed with a lower fillrate in mind
    • There is no Z-buffer anymore (at least at peak speed, it's not copied back to the main memory), and we know that the 3D programmers love to do tricks with the Z-buffer

    As a result, these cards are nice, but mostly represent another set of tradeoffs, not necessarily a revolution.

    OG.

  3. Re:Misleading story, but looks who is talking on Data Mining And The CIA · · Score: 2

    : I don't understand why they specifically mentioned TV and radio.

    Large vocabulary (but somehow predictible), speaker trained to overarticulate, no superposition between different speakers, slightly simpler language model (complete phrases, language close to written).

    State-of-the-art recognizers have an error rate of ~10% on that test, which until last year was one of the evaluation tests at the speech group at NIST. Check http://www.nist.gov/speech/tests/index.htm for details.

    Since the point of disminishing returns was reached, the test in going to be replaced with a new one, a audio/video recorded meeting transcription. Much, much harder.

    OG.

  4. Re:You betcha! on Preview of GPL V3, Part 2 · · Score: 1

    Of course they can. Heh, the BSD license even allows you to change the license of Kicker and KWin to GPL if that makes you feel safer.

    OG.

  5. Re:Obvious Question: Who read the EULA? on EULA In Games · · Score: 1
    If only you were right. If you're in the US, go check the ProCD, Inc. v. Zeidenberg case. An interesting analysis is at http://www.richmond.edu/~jolt/v3i1/hawkins.html.

    OG.

  6. Re:A pet peeve and a helpful document on Is It Time To Change RPM? · · Score: 1

    XML because after a while everybody becomes tired of writing Yet Another Parser[tm], while slapping in the libxml works perfectly.

    OG, converting all the config files of his program to XML

  7. Probably because the GPL (and the MIT license) won on NASM Public License Not GPL-compatible? · · Score: 2
    With the current tendancy[1] of moving major projects to the GPL and the release of a large amount of previously closed code to under that license, there are only two major licenses remaining: the GPL, and the MIT one (aka Apache, BSD next generation). Or, as was named an interesting thread on Technocrat, the GPL becomes the industry standard license. It is probably going to stay that way since these two beasts are compatible.

    So, as a result, every new potentially open source license has to be checked against these two. And since the MIT license is essentially a "no constraints" one, the GPL is the only one with which issues can appear. And incompatibility with the GPL has become a killer. It's simply a matter of leverage.

    OG.

    [1] Mozilla, Qt

  8. You're doing the usual error on NASM Public License Not GPL-compatible? · · Score: 1

    The problem here is not whether NASM-licensed code "accepts" to be linked with GPLed code. It is whether GPLed code would accept to be linked with NASMed code. It seems like the answer is no.

    It's not easy to make a GPL-compatible license. I personally see that as a feature.

    OG.

  9. Spanish and the US on You Say Tomato, I say Fan Jia Qie? · · Score: 1

    Looks a lot like spanish is on the way to become in 20, 30 years the official US language anyway. Mostly everything administrative is done both in english and is spanish, and there seem to be more people not able to speak english than not able to speak spanish.

    But heh, maybe in 50 years ubiquitous translation technology will make language barriers inexistant (and, according to Douglas Adams, cause an impressive number of wars in the process ;-).

    OG.

  10. The _real_ decoding on Free Barcode Reader From Radio Shack · · Score: 1

    - Split blocks on the dots
    - Do a 4->3 binhex-like decoding with the table [a..z][A..Z][0..9][+-]. Drop any incomplete byte
    - Xor each value with 67
    - Print as ascii

    The first block is some kind of serial number, the second the type of barcode (UPA, C39, 128...), the third the barcode itself.

    OG.

  11. Re:Feature priorities askew? on Old Atari Design Docs Online · · Score: 1

    Well, the original poster was talking about the atari st, so I placed myself in that time frame. The ST hardware was definitively of the "framebuffer" category. You'll notice that the STE added hardware scrolling and a blitter.

    BTW, the ST has an hblank (on both timer B or maybe C, I'm not completely sure, and irq level 2).

    Older home computers were inheriting from the arcade games/text console era. The VIC20, C64, ZX81... had a tile based architecture. The evolution started with the Spectrum and the Oric, which had an intermediate representation between tiles and framebuffer. The Amstrad is one of the first widely used pure framebuffer implementations.

    OG.

  12. Re:Feature priorities askew? on Old Atari Design Docs Online · · Score: 1

    Well, tile-based graphic modes are nice for action games, but not that nice for aventure games with non-tiled graphics, not nice for showing how the kid can easily draw a circle with a simple basic command, and definitively a pain for any windowing system (look at the gem and/or workbench, compare to the pc text-mode interfaces of the time).

    Once you have implemented (in hardware) a framebuffer, which is a simple linear memory read + color palette lookup + DAC, you'd rather spend time and money accelerating its use thru blitters, coppers and equivalents (Amiga) or not accelerate anything at all and reduce the costs (Atari) rather than having to add a tile-based display system.

    OG.

  13. Re:Feature priorities askew? on Old Atari Design Docs Online · · Score: 5

    The video subsystems were completely different for computers than for arcade machines at this time[1].

    Computers:
    - framebuffer
    - hardware support for scrolling of the pixels
    - blitters
    - hblank interrupt for effects

    Arcade games:
    - n planes of tile oriented video (i.e, the screen is divided into 8x8 elements selected by number)
    - sprites generator (usually a plane of its own)
    - priority manager
    - hardware support for global scrolling of the tile planes
    - horizontal and vertical line scrolling
    - vblank interrupt only

    There were numerous variants, of course, and some games used a framebuffer (williams games, mostly), but this is the usual architecture. It trades off genericity (you can't really draw a line in a no-framebuffer, tile-based system) for efficiency (zero-cpu-cost layers, independant busses for the graphic roms which are directly connected to the tile/sprites ICs, etc....). That's mostly what made them so impressive compared to the quite feeble CPUs they were using.

    OG, mamedev

    [1] Now everything has been unified under a common 3d-oriented architecture.

  14. Re:Guesses... Wonders... on NASA Demonstrates Space Sails (In The Lab) · · Score: 1

    The source is pushed back. But the source may have a lot more energy available than the sail, and/or being setup on something of a high mass (like the moon, for instance).

    The momentum of a photon is independant of its velocity (which is c no matter what) or its mass (0 no matter what either). It is known as h/l, where h is the Planck's constant and l the wavelength. So if there was a loss of momentum what would happen is a frequency shift.

    But, in practice, there is no noticeable loss in the absolute value of the momentum, only a change in the direction of the vector, which becomes the mirror image of what it was when coming in. The difference between the two vectors is the amount of reaction given to the sail.

    OG.

  15. Re:Translation on Top Ten Algorithms of the Century · · Score: 1

    MPEG2 is very very close to MPEG1. The DCT is still there, and in fact, identical.

    Now, future standards may use wavelets.

    OG.

  16. Why a flash jfs? on Journaling Flash File System · · Score: 5

    Because flash memory is not standard memory. In particular it has slower access times and does not like to be written to often that much. This makes using caches necessary for good performance (especially on 200+ Mhz handhelds).

    But if you use caches, there's always the question of what happens in the case of a power outage (as in, the battery just popped off). Journaling allows to go back quickly to a reasonable state 99.9% of the time (at least). To the point that the user will probably not notice the problem.

    Incidentally, a jfs does _not_ protect against disk crashes at all, it is not designed for that. If you want protection against (most) disk crashes, what you need is RAID.

    Actually, if you want very reasonable data security without daily backups, especially given the current cost of large disks and comparable-size backup systems, you probably need a jfs+raid combination.

    OG.

  17. Re:If you want its functionality, run 2.3.Latest on Kernel Traffic #64 And The 2.4 Kernel TODO · · Score: 1

    Injurious?

    Al is currently rewriting half of vfs because of the devfs integration, mind you. Which tends to make 2.3.99-pre* badly unstable (as in, 2-3 weeks ago half of the time you couldn't unmount some of the filesystems). This is going to push back 2.4 even more...

    OG.

  18. Oh you're sooo wrong :-) on Palm Moving From Dragonball To ARM/StrongARM · · Score: 1

    Never played with pervasive interfaces for now, heh?

    The Trek interface has two major points right, at least:
    - A keyword to have it to start listening for commands, i.e. they always start their interactions with "Computer"[1]
    - An voice acknowledgement of all commands ("Processing", etc...) as soon as they are understood

    The only really unrealistic part in there is the blinkenlight orgy.

    OG, creating real-world trek-like interfaces for a living

    [1] Our is called "Scooby", though

  19. Read the article, they did NOT recall the consoles on Playstation 2 Recalled In Japan · · Score: 3

    ..but rather the start up software. I.e., a CD (or a DVD, I don't know, I don't own one).

    That sucks for Sony, but it is definitively not as bad as having to recall the consoles themselves.

    OG.

  20. Re:NTSC DVD on MPAA Investigates Apex DVD Player · · Score: 1

    DVDs can only do 25 or 29.97 fps. Not 24.

    OG.

  21. For all Amiga lovers... on Amiga - Back From the Dead? · · Score: 1

    ...an especially appropriate strip.

    The whole archive is here, and the original strip here.

    OG.

    PS: The author is obviously an Amiga lover too :-)

  22. Re:FPU on AMD Sledgehammer (64-bit CPU) Preview · · Score: 1

    They already did. The speed difference in FPU operations between the K6 and the Athlon is impressive, and I even often see an 500Mhz Athlon be somehow (feels 5-10%) faster than a 550Mhz PIII Xeon in some FPU intensive operations (mp3 compression with a nontrivial psychoacoustic model).

    OG.

  23. Re:1500 Gigs of MP3s? Isn't this getting old? on IBM 75G Hard Drive Ready · · Score: 1

    Count in hours of film, then.

    DVDs are max 10Mb/s, usually arounf 6Mb/s. So these 75GB, that's ~28H of film. Not _that_ much if you think computerized VCR.

    OG.

  24. Re:programmer ego on Communication and the Open Source Community · · Score: 1
    Wish someone had told the xemacs crowd that...

    Please, tell us, what should we do?

    OG.

  25. Re:Masturbation on A Suit's Experience With Linux · · Score: 1

    You're missing one thing: the self-congratulating people usually aren't the ones who actually write the code. A real programmer always have something that itches him in his code.

    So leave 'em out of our way bragging, and let's go back to the code.

    OG.

    PS: The .ifo files are one of the most perverted format I've ever played with :-)