Slashdot Mirror


DirectX 10 Hardware Is Now Obsolete

ela_gervaise writes "SIGGRAPH 2007 was the stage where Microsoft dropped the bomb, informing gamers that the currently available DirectX 10 hardware will not support the upcoming DirectX 10.1 in Vista SP1. In essence, all current DX10 hardware is now obsolete. But don't get too upset just yet: 'Gamers shouldn't fret too much - 10.1 adds virtually nothing that they will care about and, more to the point, adds almost nothing that developers are likely to care about. The spec revision basically makes a number of things that are optional in DX10 compulsory under the new standard - such as 32-bit floating point filtering, as opposed to the 16-bit current. 4xAA is a compulsory standard to support in 10.1, whereas graphics vendors can pick and choose their anti-aliasing support currently. We suspect that the spec is likely to be ill-received. Not only does it require brand new hardware, immediately creating a minuscule sub-set of DX10 owners, but it also requires Vista SP1, and also requires developer implementation.'"

29 of 373 comments (clear)

  1. More juice! by JosefAssad · · Score: 5, Funny

    4xAA is a compulsory That would seem to me to be the biggest change, that it requires batteries now.

    1. Re:More juice! by Solra+Bizna · · Score: 5, Interesting

      Support of the feature by the video card is mandatory. Use of the feature by the game is not.

      At least, that's how I understand it.

      That aside, am I the only person who remembers reading this "bomb" months back? The plan was that instead of checking for individual features (and coding around their lack case-by-case, like we will still get to do with OpenGL) the developer would check for a DirectX version, leaving fewer opportunities for wonky bugs from weird support combinations.

      -:sigma.SB

      (Disclaimer: I am a game developer who exclusively uses OpenGL for hardware 3D and I fully intend never to write a single line of DirectX code. Ever.)

      --
      WARN
      THERE IS ANOTHER SYSTEM
    2. Re:More juice! by TheRaven64 · · Score: 4, Informative

      On many games, I can run at a much higher resolution without AA than with. In my opinion, high resolution > antialiasing. This is especially true on displays like LCDs, which have a fixed pixel size. Running at a lower resolution than native will add scaling artefacts, and AA can make these even worse. Of course, the spec only make support for AA mandatory; it doesn't force you to use it.
      --
      I am TheRaven on Soylent News
  2. Where is OpenGL when we need it? by imbaczek · · Score: 5, Interesting

    This seems like a window of opportunity for a new OpenGL standard. Anybody knows when it's due?

    1. Re:Where is OpenGL when we need it? by MrCoke · · Score: 5, Informative
    2. Re:Where is OpenGL when we need it? by jeevesbond · · Score: 4, Insightful

      SDL is not comparable to DirectX in any way

      From the SDL website:

      Simple DirectMedia Layer is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer.

      From http://www.gamesforwindows.com/en-US/AboutGFW/Page s/DirectX10.aspx :

      DirectX® APIs gives multimedia applications access to the advanced features of high-performance hardware such as three-dimensional (3-D) graphics acceleration chips and sound cards. They control low- level functions, including two- dimensional (2-D) graphics acceleration; support for input devices such as joysticks, keyboards, and mice; and control of sound mixing and sound output.

      No, it is not a joke. Yes, they are comparable.

      --
      I'm going to transform myself into a mighty hawk. Either that or I'll just go and work at Dixons, haven't decided yet.
    3. Re:Where is OpenGL when we need it? by ricegf · · Score: 4, Funny

      @llgaz: "No, nothing can be obsolete on open industry standards like OpenGL. At last resort, your OpenGL layer would "software render" the OpenGL 3 content instead of telling GPU to draw it."

      Yes, well I remember setting up my first Linux install on an old and ludicrously underpowered machine, and immediately launching (naturally) TuxRacer.

      First image: Tux happily sitting on sled at top of hill.

      Second image (10 seconds later): Tux careening wildly out of control down the hill.

      Third image (10 seconds later): Tux's terror-striken face as he flails through the air toward a stand of trees.

      Fourth image (10 seconds later): "Game over."

    4. Re:Where is OpenGL when we need it? by returnofjdub · · Score: 4, Informative

      I hate to gripe, but there are a few glaring misconceptions that need to be addressed in your post. Mainly this claim that DirectX/Direct3D is "pointing and clicking in Visual Studio." You're probably thinking more along the lines of XNA, but core Direct3D is a pretty basic interface to the graphics hardware (you're dealing with vertex buffers, texture objects, vertex/pixel shaders and their associated inputs, and a number of state parameters). Functionality wise it offers essentially what OpenGL does, except wrapped up in a platform-specific COM interface. There is a higher level library called D3DX that adds some helper functions for loading textures and meshes and doing vector and matrix math, but even that's quite a ways from the "pointing and clicking in Visual Studio" you mentioned.

      DirectX isn't "easier" than OpenGL/OpenAL (in fact, OpenAL is higher level than DirectSound or XAudio, if you've ever used any of those APIs). The extra price of OpenGL comes not from "the fact they are intended for real developers" (whatever that means), but rather from the fact that it's not exactly the cleanest API at the moment (but that will change in a few months when OpenGL 3.0 finally hits). In combing through this thread I'm surprised I haven't seen mentioned that one big reason Direct3D took off over OpenGL on Windows is because OpenGL is notoriously difficult to write stable, performant drivers for. An article in issue #2 of the OpenGL newsletter mentioned how the old object model caused unnecessary driver overhead, for instance: http://www.opengl.org/pipeline/article/vol002_3/

      Back in the late 90's when all this stuff was taking off, major games like Half-Life, Quake 2, and Unreal had several graphics renderers encapsulated in DLLs. Half-Life had software, OpenGL, and Direct3D. Quake 2 had software, OpenGL, and I think PowerVR or something. Unreal had a heck of a lot of different renderers, I know software, D3D, Glide, and OpenGL were among them. They did this because driver performance and compatibility was such a big issue back then, by writing to more than one API they could cover all the bases (card X doesn't run GL well but does run D3D well? Then we support that scenario. Card Y runs D3D poorly but does GL well? We support that, too). At the end of the day, the major graphics vendors ended up putting out really excellent D3D drivers and that helped the API out significantly. D3D was the only hardware-agnostic solution back then aside from OpenGL (ATI wasn't implementing Glide), and the API mapped to the general hardware case well enough that it was relatively easy for most vendors to write good drivers for.

      Like pretty much everyone else who isn't a Microsoft employee, I do wish Microsoft would have adopted OpenGL as the sole hardware graphics standard instead of running off and creating their own thing and creating yet another obstacle to porting games over to different platforms (and to be clear, there are MANY more issues to porting games to different platforms than I/O APIs, for some reason I'll never understand that point is lost on a lot of people), but painting game developers who use DirectX as corporate Microsoft shills isn't the most honest or productive characterization of why things are the way they are. What is productive is looking at the technical flaws present in OpenGL and rectifying them, which is something the Khronos ARB Working Group has done an excellent job of.

      As far as id is concerned, Carmack is using the Direct3D-only Xbox 360 as his benchmark development platform at the moment (you can go back to his Quakecon 2005 speech for a reference on that). That doesn't mean he's turned into a D3D fanboy, the Windows version of Rage is still going to be OpenGL. What it does mean is, these days he's probably more concerned with things like efficient multicore utilization, robust and productive content developer toolsets, and having a nice stable platform with excellent developer support as a testbed (something Mic

  3. Such a disappointment by zdude255 · · Score: 5, Funny

    I'm sure the two developers using DX10 are gonna be pissed.

    1. Re:Such a disappointment by harry666t · · Score: 5, Funny

      > I'm sure the two developers using DX10 are gonna be pissed.

      I have dissociative identity disorder, you insensitive clod!

  4. Once again, early adopters take it in the shorts.. by tech10171968 · · Score: 4, Interesting

    The article makes it seem as if Microsoft rushed DX10 out before it was truly ready; when you consider that this is what they often seem to do with their OS's, this should probably come as no surprise. Of course, we're seeing this news on the Inquirer, often considered to be a slightly less-than-reliable source of tech news. Maybe I'll reserve judgement until I hear another explanation from some other source.

    --
    This space for rent!
  5. Since when is DirectX a standard? by Dracos · · Score: 4, Insightful

    Once again, those seven little letters get left out of a "standards" article: d-e f-a-c-t-o.

    1. Re:Since when is DirectX a standard? by Anonymous Coward · · Score: 5, Funny

      DirectX is a standard and de facto standards are a subset of standards: the minority that are actually used.

      A standard is just a set of rules. If I wrote a blog article "Rules for wiping ones arse" that would be a standard. In the unlikely event it became widely accepted it would be a de facto standard. If the international community became concerned about global arse-wiping inconsistency it could ultimately become an ISO standard.

  6. Catchy title but... by Taagehornet · · Score: 5, Insightful

    "Now" is probably an exaggeration, considering that we're talking about Vista SP1.

    "Obsolete" ...I guess my DX9 card has been obsolete for a few years now, it still ticks on nicely though. Heck, all my hardware is probably obsolete.

    You could sum up TFA in a single line: "Microsoft discusses future extensions to the DirectX API. The current generation of hardware won't support those."

    Are anyone really surprised? Newsworthy?

    1. Re:Catchy title but... by Sycraft-fu · · Score: 4, Insightful

      You hear about it for a few reasons:

      1) Some people (like many on Slashdot) hate MS and want them to fail, thus look for anything that makes them look bad and make sure it gets page time.

      2) For some reason, some people had the perception that because DX10 was launched with Vista, that made it special and thus it wouldn't be changed for a long time. Never mind that MS has released a version of DirectX that has added a significant feature (as in something that needs more hardware) every 1-2 years in the past.

      3) Perhaps because of this many people bought in to the DX10 cards expecting them to be "futureproof". Again no idea why anyone would think that given graphics cards are the things that evolve the fastest and thus obsolete the fastest.

      Also I'm not so sure they said it wouldn't support it. Maybe I misread their slides, but all I saw was they said that "upcoming hardware" will support it. That statement doesn't mean that current hardware won't.

      Either way, much ado about nothing. Games will continue to be made to support whatever hardware is common on the market. Game companies love all the flashy new toys, but they are in bussiness to make money and you do that by selling games that run on the actual systems that are out there. That means so long as most peopel don't have cards capable of using a new standard, they won't require it (though they may support it to give mroe eye candy to the eairly adopters).

      Heck, right now you'll discover that a great number of games require nothing more than a DirectX 8 accelerator. That's a card like a GeForce 4 Ti fore example. Basically that means shader model 1.1 hardware. While many games support 2.0 and 3.0 (DX 9.0 and 9.0c respectively) you'll find that a good number don't require 2.0, and very few require 3.0. The reason is that there are still a lot of people using older cards. Not every one upgrades every year. Thus game makers have to take that in to account.

      It's not like the second 10.1 comes out developers are going to say "Ok, everyone better upgrade because this is all we support!" They could try, and they'd just go out of business and other, smarter, developers would support the hardware that more people have.

      Heck it is a pretty recent phenomena that developers have stopped supporting Windows ME for games, and some still do. Why? Enough people still used it.

  7. Oh no! by mikkelm · · Score: 4, Informative

    Is that.. is that progress? New technology requiring new hardware?! BURN IT! BURN THE WITCH!

    I didn't think I'd live to see the day where new technology would be unwelcome to the slashdot crowd. I guess it isn't surprising, though, it being a Microsoft product, and slashdot degenerating into a zealot sandbox.

    DirectX 10.1 is going to be released about a year after DirectX 10. DirectX 9.0c was released about a year after DirectX 9.0b, and DirectX 9.0b hardware was also incompatible with DirectX 9.0c spec. That didn't create a whole lot of mainstream uproar, as people are generally positive towards new technology. I guess this being Vista and all, people can ignore pesky facts like those and continue their circle jerking unabated.

    1. Re:Oh no! by DrEldarion · · Score: 4, Insightful

      I didn't think I'd live to see the day where new technology would be unwelcome to the slashdot crowd. That's the general trend of Slashdot nowadays. The realization hit me when everyone started bashing the PS3, which contains a very impressive processor, allows installation of linux, has built-in media streaming, uses standard USB and Bluetooth hardware, runs folding@home, upscales DVDs and old games, etc. etc. All anyone here says, though, is "OMG SONY I BET THERE'S A ROOTKIT ON IT LOL".

      This isn't a tech site anymore, it's a political site. Witness all the anti-RIAA/MPAA stories, global warming stories, election stories...
  8. Re:I'm not really sure this matters all that much by Anonymous Coward · · Score: 5, Informative

    Wow, what a load of FUD. OpenGL is completely supported under Vista and is in no way routed through DX:

    http://www.opengl.org/pipeline/article/vol003_9/

  9. Re:Are they TRYING to shoot themselves in the foot by Macthorpe · · Score: 4, Informative
    The summary and the Inquirer article are, well, wrong.

    Microsoft announced 10.1 as a side-by-side update - DirectX 10 is not obsolete, they are both fully supported. Developers and manufacturers have the option of coding for 10.1 or sticking with 10. The real quote:

    Direct3D 10.1 is an incremental, side-by-side update to Direct3D 10.0 that provides a series of new rendering features that will be available in an upcoming generation of graphics hardware.
    --
    "It does not do to leave a live dragon out of your calculations, if you live near him." - Tolkien
  10. A Bit Late To Notice? by Zephiris · · Score: 5, Informative

    That DirectX 10.1 is incompatible with 10.0 (along with new WDDM interface) has been known for at least a year now. It's a bit late for people to be in shock about it.

    Slashdot even covered it before.

    Just because Microsoft officially announced it at a conference doesn't *exactly* make it new news, since they made it very clear on roadmaps and everything else exactly what was going to happen, and why it wasn't the best idea ever to adopt DirectX 10.0 hardware, rather than hardware capable of 10.1 (or 10.2) and whatever the new superset of OpenGL happened to be (3.0 as it turns out).

    Also, the reason to bother with DirectX 10.1 isn't so much that it offers "brand new super features" to games, but the WDDM 2.1 bits, which would allow for far finer-grained context switching and task management. Being able to immediately switch from rendering one small bit, to starting to render something else, which would theorhetically make all of the compiz/Aero type stuff be able to run much more smoothly in conjunction with real 3D rendering (ie, games, CAD).

    It all seems an exercise in futility to me, as far as the "DirectX 10" hardware goes. I like faster, I like more features, but there just seems no real reason to upgrade beyond my Geforce 6800 for the price point (which I got 18 months ago). Not to a 7800-series or comparable, and certainly not to an 8x00 or upcoming 9x00 Geforce, unless driver stability improves dramatically, and they can add more real-world-useful features, particularly without the need for Windows Vista. I'm back using WinXP "for a while" again, but I generally won't buy hardware anymore unless it's a notable and drastic improvement in Windows, Linux, and FreeBSD.

    I digress, but the point is, the news has already been covered before. If it apparently wasn't that attention-worthy a year ago, is it now? New DirectX versions *always* require brand new hardware, whereas most minor OpenGL revisions have almost always included new features that also work on old hardware (OpenGL 1.5's Vertex Buffer Objects humming along happily on a Geforce 256, for instance), and while full compliance is the best, all you really need to care about is if something implements certain clearly defined extensions, rather than wondering if Nvidia or ATI have 'misinterpreted' specifications over DirectX. Both have been panned in the past for 'creative' adoption of pixel shader standards and bizarre interpretations of DirectX 9.

    I'd just hope that eventually, there's more actual competition again, and both companies (and new companies) actually respect and care about standards compliance and that both they and the standards bodies start to care about what customers actually doing with their hardware.

    --

    "A Goddess rarely smiles for she is forced by others to be an island unto herself." - Zephiris
  11. Re:Wait... by Ilgaz · · Score: 4, Insightful

    i take it you're not a game developer and/but a linux user yes? All serious gamers are happily running Windows XP with latest service pack. I have not yet seen a single gamer liking Vista unless he/she got a true monster machine which you can't tell difference whatever you do. Some game companies have guts to say "We do NOT support Vista at least until SP1 ships".

    I am running OS X here and all my games are OS X native but you don't need DX 10 enabled Vista to browse game forums :)

    The absolute need for Vista to run DX 10 killed it from the beginning. The DX 10 and Vista respectively. I am sure lots of game developers who coded direct3d only stuff questioned their choice and started to look to recent OpenGL advancements.

    I am hoping they finally started to figure risks of using a MS only technology rather than platform independent, documented frameworks such as OpenGL, OpenAL.

    Did MS care to explain what kind of undocumented,hidden quantum computing (!) routines in Vista needed for DX 10 running? :) Or did they simply state "We can't sell Vista otherwise, those FPS racing teens will buy it for DX10". I think they overlooked to gaming community, they weren't that stupid.

    You think that "Linux user" wouldn't have clue but you forget WINE factor. If I had a problem with a missing dll in DirectX, I would talk to WINE people :)

  12. M$ fractures the DX10 community! by someone1234 · · Score: 4, Funny

    Yeah, this move surely fractured the DX10 developer community.

    --
    Patents Drive Free Software as Hurricanes Drive Construction Industry
  13. Re:Mandatory 4xAA is this a joke? by Aladrin · · Score: 4, Informative

    You're reading it wrong. The -games- aren't required to support 4xAA, the -hardware- is. It's great that you hate AA and all, but there are plenty of others that insist on it. By requiring the hardware to support to be '10.1 compatible' they are merely pandering to the majority of gamers out there.

    They haven't forced you to do anything, and they haven't forced developers either.

    --
    "If you make people think they're thinking, they'll love you; But if you really make them think, they'll hate you." - DM
  14. Known Roadmap by Anonymous Coward · · Score: 4, Interesting

    It's funny watching everyone who is shocked. Those are the people who have no idea what DirectX 10 is and why the model has shifted so much from OpenGL and earlier versions of DirectX.

    DirectX 10 and up is not just an accelerated video API but it is also a standard. Microsoft has completely eliminated the capability bits, or "capbits", concept in order to ensure to developers that if they program a specific version of the standard that all of the functionality mandatory by that standard will be supported by the graphics hardware. No longer will a developer target DirectX9 or OpenGL2 and have to ask the hardware whether or not it supports a plethora of options and then have to completely branch their development umpteen ways to support different varieties. If a game targets DirectX10.1 then 4xAA is guaranteed to be there, period. If a game does not require 4xAA then it doesn't have to target DirectX10.1.

    So get used to it otherwise you'll be shitting yourself for every single DirectX release going forward. This is how it works now.

  15. Re:Wait... by Professor_UNIX · · Score: 5, Insightful

    I am hoping they finally started to figure risks of using a MS only technology rather than platform independent, documented frameworks such as OpenGL, OpenAL.
    I've always wondered about this. It seems that the single biggest problem with porting Windows games to Mac or Linux is lack of DirectX support, so why do developers even use this broken technology to begin with instead of OpenGL? Is it easier to program for? Presumably Windows also supports OpenGL so why not make games that are easily ported like id does?

    Or did they simply state "We can't sell Vista otherwise, those FPS racing teens will buy it for DX10".
    Well, obviously that is the reason. There's no reason Windows 2000 Pro wasn't sufficient to run today's modern games if they had just released the latest DirectX libraries for it, but then they wouldn't have sold Windows XP and dragged gamers into the wonderful world of DRM and activation. I was more than happy to keep using Windows 2000 Pro on my gaming machine and didn't need any of the features of Windows XP.
  16. This is one deluded discussion... by arse+maker · · Score: 5, Insightful

    First off.. technology is made obsolete??? no shit! Its hard to imagine the slashdot crowd finding this to be news. This doesn't mean your dx10 card doesn't work anymore, you don't install SP1 and your PC wont boot with DX10 hardware. If you get upset every time people make revisions and improvements to software and hardware, I suggest you packup your computer and return it to avoid further heart ache. If you are an early adopter of the latest hardware and don't read any reviews (which all from memory said it will be some time before dx10 is going to matter) then thats your fault. Microsoft have explained in numerous interveiws (and documentation of course) how DX 10 will work, they even suggested 10.1 would be out BEFORE vista shipped. Graphics card features change ALL THE TIME, you have to write miles of CAPS checking code and render paths to support the zoo of cards and features. Now with DX10 they roll all the features up and any DX 10.x card will support the featuers, even if you write a DX 10.0 and DX 10.1 path, its only two options you have to support. You didn't see "ATI MAKES LAST CARD OBSOLETE BY INTRODUCING NEW PRODUCT", even though those changes could be far, far more difficult to develop for by having a bunch of changed caps and maybe even a few new proprietary ones. A fixed feature set is what allows developers to squeze out every drop of performance from PS2 hardware to make amazing looking graphics, even though your mobile phone might have more processing power available to it. And lastly.. people who mock the, apparent, modest real world improvments dx10 is offering.. what is your point? Intel brings out a new processor every x months with ~1-3% improvements, by your logic they should just stop bothering making new processors. Of course thats stupid, you wait till the improvment is enough for you to find it compelling.

  17. Re:Wait... by MBCook · · Score: 4, Insightful

    Did MS care to explain what kind of undocumented,hidden quantum computing (!) routines in Vista needed for DX 10 running?

    I can explain that one. I read a post a while back where someone who was in the know explained it (it was on one of the Microsoft blogs, I think). DX 10 contained virtualized graphics memory (that may not be the right term). Like system memory, each program would get it's own addresses and you could page in and out graphics data. This is a big feature. It also required kernel and GDI changes. This is why DX 10 could only run on Vista.

    Someone (I think it was NVidia), couldn't get it done in time.

    So it ended up optional in the spec (or moved out completely, I don't remember). The people who did do it (ATI, I think) got an unfair shake. Now without that feature, there is no technical reason DX 10 can't be run on XP without a few small innocuous changes. But they don't have time at this point (or a business reason).

    DX 10 being only on Vista was based on a very valid techical reason... that they gave up on and removed.

    --
    Comment forecast: Bits of genius surrounded by a sea of mediocrity.
  18. Re:Wait... by Sark666 · · Score: 4, Insightful

    I've posted it before, but never really got a response. So here goes. My take is we have to look back at history. Some will argue that the reason they choose directx today is, supposedly, some things are easier vs opengl.

    But way back when, I always wondered why a company like valve took an opengl engine and ported it to directx (for hl1) when no one would argue that directx was better then. Hell, carmack had his famous open letter to microsoft to ensure support for opengl. Microsoft saw how big gaming was becoming, and the best way to tie your users to one platform was to tie the developers to one platform. If hl1 was opengl only when it exploded, maybe companies like ati would have got in gear and developed better (i.e. not shit) opengl drivers. Either that or miss on out the huge hit that was/is counterstrike. I'm not saying valve was the lynchpin in how things ended up. But if big players like them stuck to opengl, more companies might be willing to port as their games would be opengl based anyway.

    So why valve did that at that time I'll never understand, but microsoft understood the market in this case, all too well.

    Why aren't there more game developers like id software who actually care? Carmack has said in the past he tries to keep everything crossplatform not because it's necessarily the profitable move, but because 'it's a good thing'.

  19. Re:For the extra features, I'm guessing by seaturnip · · Score: 4, Informative
    You missed the root cause of DirectX's success, which is that Microsoft has been a lot more quickly responsive and to the concerns of developers and hardware designers. They listen to the API fixes and new features that game developers ask them for, and they work with graphics card manufacturers to expose new capabilities as soon as they are available, and release new DirectX SDKs every few months. Meanwhile OpenGL's committee decisions are always a step behind.

    So if you want to make your game portable by not using any DirectX stuff, well, you'll have to write your own equivalent for that other stuff. That translates directly into higher development costs, plus God knows if your own stuff will work as well, and what bugs will it have.

    Nah there are excellent portable third-party libraries for this stuff now, such as Miles (sound), Bink (video), DemonWare (networking). The components of DirectX that are not Direct3D are pretty much irrelevant today.