Engineering Windows 7 Graphics Performance

One of the areas of any release of Windows that receives a significant amount of testing and scrutiny is the performance of graphics—desktop graphics all the way to the most extreme CAD and game graphics. The amazing breadth of hardware supported for Windows and the broad spectrum of usage scenarios contributes to a vibrant ecosystem with many different goals—from just the basics to the highest frame rates on multiple monitors possible. In engineering Windows 7 we set out to improve the “real world” performance of graphics as well as continue to improve the most extreme elements of graphics. This is work we do in Windows 7 and work our partners do as they work to improve the underlying hardware/software combination through drivers (note: Windows Vista drivers continue to work as they did in Windows Vista, but we've also been working with partners on updated drivers for Windows 7 which many of you have been testing through Windows Update downloads). This post looks at this spectrum of engineering as well as the different ways performance is measured. Ultimately we want to inform you about what we have done in engineering Windows 7, while we leave room for the many forums that will compare and contrast Windows 7 on different hardware and in different scenarios. This post is written by Ameet Chitre, a program manager on our Desktop Graphics feature team. --Steven

If you have gone online to check out or purchase a new PC, you must have noticed that “faster graphics” and “great performance” are always some of the key selling points. People have come to expect faster systems which enable them to edit photos, do email, watch high-definition videos and play the latest 3D games all with greater ease, often shuffling between these tasks seamlessly. Quite a few of these users refer to the enthusiast community blogs and various review sites which run graphics benchmarks and report results evaluating how fast the graphics of new hardware or software performs. Traditionally graphics performance has been measured and analyzed through 3D games but it also impacts what we call “desktop scenarios” - such as when you are using the Windows UI, moving or maximizing windows, or scrolling within Word or IE etc. The performance requirements for these desktop scenarios are quite different from3D games. In fact, this is the reason in Windows Vista Experience Index (WinEI) we give you rating for these two scenarios separately, highlighted in the image below:

Windows Experience Index sample. Figure 1. WEI sample with Graphics capabilities highlighted.

Graphics performance is usually assessed through many benchmarks. These can be classified into 2 broad categories:

  • Scenario benchmarks: These report performance of particular scenarios, e.g. the frame rate when flying over a terrain in a flight simulator. Many of the popular games have in-built benchmark modes that demonstrate how fast the graphics perform in scenes that are typical for that game.
  • Synthetic benchmarks: These highlight the performance of a particular aspect of graphics such as the ability to draw a number of lines as fast as possible.

However, there are plenty of things that we all do on our PCs that don’t have benchmarks tracking them that are still quite critical to make fast. In these cases we use the instrumentation within Windows to obtain timing information and then analyze the performance.

This blog entry discusses various aspects of graphics performance - both gaming and desktop graphics performance. It calls out the changes we made in Windows 7 to address user feedback as well as to take advantage of modern hardware to improve graphics performance.

Desktop Responsiveness

Many have experienced scenarios where an application, or Windows itself, stops responding momentarily. This is type of a performance issue that can be impacted significantly by the performance of graphics in the PC. We categorize these as desktop responsiveness issues.  Improving responsiveness, both in real terms and by avoiding non-responsive moments, is one of the key ways that performance is improved in the system.  It is also hard to measure.

Measuring desktop responsiveness is a hard problem since a number of issues which affect responsiveness aren’t easily reproducible and there is a great variety of them. They are rarely caught by either kind of benchmark as these issues are dependent on real-world combinations of factors. For Windows 7 we spent a great deal of time looking at these performance glitches using a mechanism in test versions of Windows 7 which has the ability to record key OS events and when they occurred. During real-world testing when we encounter a responsiveness problem, the tester can hit a record key and enter a small description of the issue encountered. The event history with diagnostic information called a “performance trace” is written out to a file and uploaded to a server where a team of performance analysts parse the data to figure out the cause of the responsiveness issue. This process has been successful to the extent that today most responsiveness issues can be quickly tracked down and root-caused.

Using this methodology, we analyzed thousands of desktop responsiveness traces where the tester experienced a frozen desktop anywhere from 100msec to several seconds. The type of issues ranged from an antivirus blocking disk access for all applications while updating itself on the vendor’s website to an application doing network access from a UI thread. In a significant portion of these traces, we found that a GDI application is waiting on another GDI application which is experiencing slowdowns due to excessive paging activity. This was the single-most frequently occurring cause of all desktop responsiveness issues, which without this data we probably would not have assumed. Based on these investigations, we worked to improve the architecture in these two key areas:

  1. GDI Concurrency: Improve responsiveness when multiple applications are running. This required a re-architecture of the code around GDI (Graphics Device Interface) synchronization objects or “locks”.
  2. Reduction of overall memory footprint of Windows: Reduce the memory overhead of composition in the Desktop Window Manager (DWM), which is the component responsible for rendering the desktop. This helps reduce overall paging activity and thus is especially important for low-memory PCs, especially using shared graphics memory.

These are described in more detail below.

GDI Concurrency

A number of performance traces we investigated in the context of desktop responsiveness pointed us to the design of a key synchronization mechanism in GDI. The performance challenge happens because the design of GDI in Windows Vista allows only a single application to hold a system-wide exclusive global lock.  While this seems obvious in hindsight, when this decision was originally made the performance characteristics of different parts of the system made this optimistic implementation perfectly reasonable.

Existing model of GDI concurrency.Figure 2. Existing architecture of GDI concurrency.

GDI applications running simultaneously vie for this global lock in order to render on the screen. The application that accesses the global lock prevents other applications from rendering till it releases the global lock. The situation often gets exacerbated when the application that is holding the lock needs to page in a large amount of memory from the disk since moving the memory from the disk to RAM takes a relatively long time. The above picture shows two GDI applications running simultaneously, contending for the global lock. If App X gets hold of the lock, it can render to the screen while App Y is unable to do so and waits for App X to finish.

Windows 7 architecture of GDI concurrency. Figure 3. Windows 7 architecture of GDI concurrency.

The solution to the problem was therefore to reduce the lock contention and improve concurrency by re-architecting the internal synchronization mechanism through which multiple applications can reliably render at the same time. Contention due to the global exclusive lock is avoided by implementing a number of fine-grained locks which are not exclusive but aid parallelism. The increased number of fine-grained locks adds a small overhead for scenarios where only a single application is rendering at a time.

Special attention was paid to GDI application compatibility as changing internal synchronization mechanism in the most widely used API stack could potentially give rise to timing issues such as deadlocks and rendering corruption.

This work also resulted in better rendering performance of concurrent GDI applications on multi-core CPUs. Multi-core Windows PCs benefit from these changes as more than one application can now be rendering at the same time.

After the GDI concurrency work was implemented in the Windows 7 builds leading to the Beta, we saw a large reduction in the number of desktop responsiveness issues reported by our testers which were caused by one application blocking another one due to GDI. To further validate the scalability of our new implementation, we wrote tests that draw 2D GDI primitives and measured the rendering throughput by launching simultaneously multiple such applications. The throughput is measured by adding together the frame rate (FPS) of each application window. Below is a sample of these results on a quad-core CPU system.

GDI Concurrency -- Scalability

Figure 4. GDI Concurrency and Scalability.

Without the Windows 7 GDI concurrency, the rendering throughput of these applications is effectively limited to the performance of a single CPU core. Since only a single application can acquire the global exclusive lock while the others are waiting, this scenario doesn’t benefit from multiple CPU cores. This demonstrates that GDI applications in Windows 7 are now much less dependent on one another. This benefit will not need any new display drivers; it will work on any Vista (WDDM 1.0) and newer display drivers.

Desktop Graphics - Reduced Memory Footprint

Another area which affects system responsiveness is memory usage. Simply put, increased system memory (RAM) usage leads to an increased paging activity which directly leads to reduced system responsiveness. Thus, for the best responsiveness, all applications, processes and OS components need to use as little system memory as possible.

In Windows Vista, the amount of memory required to run multiple windows scales linearly with the number of windows opened on the system. This results in more memory pressure when there are more windows or if the monitors have higher resolution. It gets worse if you have more than one monitor. As part of investigating various means to improve system responsiveness, we saw a great opportunity in reducing the usage of system memory by DWM. In Windows Vista, every GDI application window accounts for two memory allocations which hold identical content – one in video memory and one in system memory. DWM is responsible for composition of the desktop through the graphics hardware. Hence, it requires a copy of the same allocation in video memory, which is easily accessible by the graphics hardware. The duplicate copy present in system memory is required because GDI is being rendered utilizing the CPU completely in the operating system without any assistance or “acceleration” by the graphics hardware. As the CPU performs all the tasks for rendering GDI applications, it requires an easily accessible cacheable copy of memory.

Existing memory allocations.

 

Figure 5. Existing memory allocations.

Windows 7 saves one copy of the memory allocation per application window by getting rid of the system memory copy entirely. Thus, for a GDI application window visible on the desktop, the memory consumed is cut in half.

Windows 7 memory allocations.

Figure 6. Windows 7 memory allocations.

We achieved the reduction in system memory by accelerating the common GDI operations through the graphics hardware - the WDDM drivers accelerate these to minimize the performance impact of the CPU read-back of video memory. This was necessary as performing these operations otherwise on the CPU would incur a heavy performance penalty. In order to decide which GDI operations to accelerate, it was important to understand the usage pattern of various GDI applications. We profiled the top 100 GDI applications to learn more about their calling patterns and frequency and nature of the GDI operations.

Calling patterns and frequency of GDI operations for 100 GDI-based applications.

 

Figure 7. Calling patterns and frequency of GDI operations for 100 GDI-based applications.

Based on real-world application statistics, a tiny snapshot of which is seen above, we worked with our graphics IHV partners to provide support in their drivers to accelerate the most commonly used GDI operations. Windows 7 systems with these updated drivers, called “WDDM v1.1” will thus benefit from this memory savings work. Please note that WDDM 1.0 drivers continue to function and are fully supported on Windows 7.  You might have seen Windows Update providing these 1.1 drivers during the Beta—these drivers are themselves in Beta.

DWM memory consumption.

Figure 8. Desktop Window manager memory consumption comparison using WDDM 1.1 v. WDDM 1.0.

The above data shows that the memory savings become more and more pronounced when you have multiple application windows visible on the desktop. Since you save a lot of system memory, the paging activity gets reduced – as a result, your system responsiveness improves for the same workload.

Certain trade-offs had to be made for the desktop responsiveness improvements which benefit a wide range of systems. For example – the elimination of the duplicate system memory copies which “speed up” certain operations introduced slightly reduced performance as the CPU now has to read data back from the video memory. An analysis of real-world application statistics showed that these operations were rare. However, certain GDI micro-benchmarks which issue these operations show some performance degradation. This is something to note if you are running existing benchmarks that stress specific GDI operations repeatedly, which isn’t necessarily a reflection of real-world performance.  Our observation has been that these slow-downs do not impact the end-user functionality directly and that the memory savings directly result in Windows 7 being much responsive overall.  The improvements overall are definitely noticeable on memory constrained PCs with shared memory graphics.

Gaming Performance

No article on graphics performance is complete without talking about gaming, which is still the most widely analyzed and discussed aspect of graphics performance. There are a number of popular benchmarks such as 3D Mark as well as in-game benchmarks which are really a mode in which you can run your game where it renders the game scenes and animations without any user interaction. This area has thus been well tracked by the gaming industry through various industry benchmarks, which are pretty realistic and representative of actual games. The different benchmarks and tests are widely discussed and gamers all well-versed in the subtleties of these measurements and translating them into recommendations depending on their hardware, drivers, and gaming expectations.

For Windows 7, we have worked closely with our Graphics IHV partners, helping them improve the WDDM drivers’ gaming performance with specific changes to how Windows 7 works under the hood, while maintaining the same driver model and compatibility. Our continued investments in performance tools has helped us and our IHV partners track down and analyze various gaming performance bottlenecks and fix them in subsequent driver releases. The fundamentals of the Windows Display Driver Model remain unchanged in Windows 7. Some policies around GPU scheduling and memory management were changed to enable better performance in certain scenarios.

Because these benchmarks are very sensitive to the specific hardware, firmware, drivers, and overall system and because these are so widely measured and discussed elsewhere we are going to leave these comparisons to third parties.  Like many areas in Windows 7, our commitment is to engineer even better performance across many dimensions.  We believe it is better for you to experience these efforts directly.  In comparing Windows 7, we would encourage the comparison using Windows Vista SP1 and keep in mind the difference you might see in WDDM 1.0 v. 1.1 and that the 1.1 drivers are still under development.

In Closing…

As you can see, in engineering Windows 7 we have worked hard to improve the architecture for graphics for real-world performance. It benefits both ends of the hardware spectrum – by enabling low physical memory systems to run a leaner and faster Windows and at the same time enabling multi-core PCs render multiple graphics applications much more efficiently.

-Ameet

Comments

  • Anonymous
    April 25, 2009
    If you're looking for more information in DirectX see the blog http://blogs.msdn.com/directx/.   --Steven

  • Anonymous
    April 25, 2009
    I'm glad to see this GDI bottleneck has been solved. I was always wondering why when application A was slow or not responding, switching to application B was slow as well. As application B was almost idle, not consuming much CPU power, this didn't make sense to me, other than thinking the whole graphic subsystem was single threaded. Because of the system wide lock this was in fact more or less the case. Fortunately this has been solved. Keep up the good work!

  • Anonymous
    April 25, 2009
    As I attempt to write drivers for the 852/855/915 GME this commenttary is timely. With the results that I have been produced in my initial driver following the guides that are included in WDK Beta for Windows 7, I have started to appreciate what the Windows 7 Developers have gone through to make the graphics driver have a less significant impact on system performance. I will go through some of the suggested to sites to understand this a little more deeply. Thanks for the Great Work and this helpful Blog.

  • Anonymous
    April 25, 2009
    The comment has been removed

  • Anonymous
    April 25, 2009
    Nice post!! I try more game with Nvidia 8800 GTX Nvidia 8600 GT (laptop) Nvidia 7600 GS (old PC) and work great! next week i try Nvidia GTX 275 in Windows 7 . Great Work!!

  • Anonymous
    April 25, 2009
    Very impressive and much needed optimizations. Can't wait for the official release :)

  • Anonymous
    April 25, 2009
    Great work in this area! I have been looking for this information to help understand what is going on in the background.

  • Anonymous
    April 25, 2009
    I'm extremely impressed. Really interesting post and a really interesting topic in general. I'm glad to see that Microsoft is spending time considering desktop responsiveness issues. That said, I didn't need to read this post to know that something was radically better on Windows 7, I just had to use it...

  • Anonymous
    April 25, 2009
    Look like this is the right place to ask this - Does Windows 7 have WDDM display driver for Intel 915 desktop board. I have seen a lot of blogging on the net about this, just wanted to confirm.

  • Anonymous
    April 25, 2009
    @vg7265 The 852/855/915GME will never support a WDDM driver. I am only writing a driver so I can utilize the full display resolutions available in the card. The trade of is you can not play chess as soon as you evoke DirectX 3D and OpenGL...It is a legacy card and I now know why Intel and Microsoft do not produce drivers for it. @steven_sinofsky I am wondering when Windows 7 is RTM'd are early implimenters going to be able to purchase a licence before official release date? And if it has not been considered, could you impliment it as a requested feature! All I can say is Wow, Great OS, even better work!

  • Anonymous
    April 25, 2009
    The comment has been removed

  • Anonymous
    April 25, 2009

need keep Menu color layout consistency for Windows 7. Please keep color layout consistency for Menu. Why the 'Include in libary' used another color layout? view snapshot: http://www.windows7taskforce.com/thumb/mune_color_layout.png/x/560 2) Improve Start Menu and Appliaction Menu color style (suggestion consistency) (discriminated Appliaction Menu color very difficult) There is no consistency between the Start Menu and the Appliaction Menu. To keep Start Menu and Appliaction Menu color style consistency, like Windows XP. All use white color for background, light blue color for selected item. view snapshot: http://www.windows7taskforce.com/thumb/style_consistency5.png/x/560 3) keep theme style consistency for Windows 7 keep theme style consistency for Menu bar, Tool bar. like Windows XP theme style's consistency. view snapshot: http://www.windows7taskforce.com/thumb/style_consistency55.png/x/960

  • Anonymous
    April 26, 2009
    Stand-alone Pin Recycle Bin to Taskbar Problem: Currently, Recycle Bin was Pinned of the Windows Explorer Jumplist. It is very unhandy. Because the Recycle Bin is a frequently used module. But put on desktop often covered with other window... Solution: Stand-alone Pin Recycle Bin to Taskbar (default). With not show Recycle Bin icon on desktop (default). Of course, you can Unpin this Recycle Bin from taskbar. screenshot: http://www.windows7taskforce.com/thumb/Stand-alone_Pin_RecycleBin_To_Taskbar6.png/x/560

Windows Fax and Scan's toolbar update to win7style Problem: Windows Fax and Scan's toolbar update to win7style. like Windows Photo Viewer or Windows DVD Maker. Solution: Windows Fax and Scan's toolbar update to win7style screenshot: http://www.windows7taskforce.com/thumb/Windows.Fax.and.Scan_toolbar_no_win7style.png/x/560

complete remove Windows Mail from Windows 7 Problem: Now Windows Mail already can't start. It's already unsupported in win7. But it's still remain on the win7 (Program FilesWindows Mail). If you go to the Program FilesWindows Mail folder, you'll still find the Windows Mail folder and those files in them. And you can't run WinMail.exe. Solution: complete remove Windows Mail from Windows 7 Please delete WinMail.exe Move other files to system32 folder. Don't put them in Program FilesWindows Mail (folder name wrong) http://www.windows7taskforce.com/user/2721

  • Anonymous
    April 26, 2009
    You guys done the best job to improve Windows 7! Reduced memory consumption is number one reason of Windows 7 success. The only party-pooper is Intel with 945GM WDDM 1.0 chipset in millions of notebooks... One question not covered here: what about GDI acceleration which i heard was brought back in WDDM 1.1? Is that true or optional, or not related with 1.1 at all? Why it's even 1.1 with such major changes =)

  • Anonymous
    April 26, 2009
    I am not sure whether this is a graphics issue or what, but the main window of WinSCP 4.1.9 doesn't appear in Flip 3D, although it is present on the taskbar and in simple Flip. When this window is active and Flip 3D is started another window will appear on top of the 3D stack.

  • Anonymous
    April 26, 2009
    Yeah, I've been noticing some data corruption or some sort of drawing issue with the taskbar open as well. This occurs mostly when I'm using IE.  If you were to split the taskbar into 3 horizontal pieces the middle piece and the title bar of IE will flicker.  I just installed a pre 1.1 driver and the issue disappeared (which I'm sure also made me lose the gain of the removal of the duplicate memory)

  • Anonymous
    April 26, 2009
    Will Vista users be offerred WDDM 1.1 drivers?

  • Anonymous
    April 26, 2009
    I should have mentioned It's with the mobile intel 965 express chipset.  I've also noticed a weird issue with the autocomplete from the address bar is being drawn behind the IE window.  I've noticed this on the 965 graphics and other computers with different types of graphic cards.  

  • Anonymous
    April 26, 2009
    Great read, interesting work! Windows 7 still hangs quite often when you're using applications to access data on an unreliable network. But it's getting better with every release. Can I (as a regular user) report those things as well? Or is Microsoft already collecting all "This application is not responding" events? You could make my life as developer a little bit easier if the drivers offered by Windows Update (or those on the Windows DVD) supported OpenGL 1.5 already. Or if there was a working, 1.5-compliant translation layer (like MSOGL) which let's OpenGL applications use hardware acceleration without having users to download new drivers. Vista's solution (MSOGL) never worked for my OpenGL 1.1 apps...

  • Anonymous
    April 26, 2009
    Will this also affect CAD application performance?

  • Anonymous
    April 26, 2009
    I watched the PDC talk on Direct2D / DirectWrite last night: Interesting stuff and it looks really easy to slot into existing code and take advantage of. I haven't used it yet, and I'll need to support GDI for a good while longer (might go for two code paths to take advantage of the speed/quality of Direct2D where available), but it looks well designed. Nice work, guys!

  • Anonymous
    April 26, 2009
    I am wondering if the Taskforce retoric could be removed from this blog. Children should be supervised more closely, because I as a legitimate user of this site get tired of seeing this sort of childish demanding behaviour>

  • Anonymous
    April 26, 2009
    Thanks for the great news. So I am thinking this is going to be included in the builds after 7100.

  • Anonymous
    April 26, 2009
    Very cool. Can we get this trace tool to analyze repsoniveness issues also for Windows Vista/Server 2008? This would help us a lot to troubleshoot performance issues in todays systems. Yours,  Alois Kraus

  • Anonymous
    April 26, 2009
    The comment has been removed

  • Anonymous
    April 27, 2009
    Interesting post I've noticed some performance issues with the DWM if you don't have any heavy graphic program running. Both in Vista and Win7 on more than one pc that are powerful enough. It can be seen when using flip3d and is even more clear in expose-clones using the DWMThumb API. If you start the animation the first second or two will have really bad frame rate but after that it is really smooth. But if you have a graphic intensive program running, like a movie in hd-format, then the animation will be smooth from the beginning. This is really annoying because when switching window you don't want an animation longer than 2seconds anyway.

  • Anonymous
    April 27, 2009
    New graphic (vista model graphic engine) is some dark. also black shadow of windows explorer has perfected it!

  • Anonymous
    April 29, 2009
    What're the boundaries the application holds this global GDI lock ? If the application holds this lock from within each GDI call, then the a swapping application should not affect other applications's graphics performance. Every GDI call will acquire the lock and then release it before returning. In this scenarios, holding this global lock should not have any affect on other apps performance. (other than acquiring and releasing a global lock for each and every GDI call would be very costly IMHO). On the other hand, if the global lock is held between multiple GDI calls, then what happens if the application forgets the call to release the lock ? Then all other apps will appear to be stopping. This certainly should not be the case. How is the global lock used in this respect ? If I'm not missing something the global lock should not be a problem even in Windows Vista. Obviously, I'm mistaken some way. Would you please explain how ? Best regards, Bulent Erdemir

  • Anonymous
    April 30, 2009
    I have a better idea! Install XP! I'm serious, Microsoft is actually competing with themselves. Even simple file browsing is noticably sluggier in Vista, and 7, then in XP: Do we really need the extra thumbnail in the details pane and folder thumbnails? Anyway, seems like Microsoft are finally making their user interface more multi-threaded. I remember how BeOS was very responsive, even in heavy cpu using scenarioes. It was because it was SMP programmed from the bottom. But windows XP is still instant responsive, so why all the extra work with Windows 7? Is it a  workaround to all the bloat?

  • Anonymous
    April 30, 2009
    I love Windows 7, mainly for its Media Center.  However as a New Zealander we have DVB-T transmission of freeview TV in h.264 codec. Windows 7 decodes this using software only, when will we be able to use the hardware decoders in ATI and Nvidia cards?

  • Anonymous
    May 01, 2009
    Having no more send feedback button, I have to write the annoyances I experience here. I like the new backup. I have a weekly schedule to be done during the night and I hardly ever notice it. However, last night I turned my PC off and the backup was done this morning when I turned it on. It took half an hour during which I couldn't use my computer. CPU utilization was only 40%, memory was maxed out (2GB, not cached), don't ask why, 'cause the first 5 processes with the most memory summed up 250MB only. Disk utilization was constant, however, with Backup having Normal I/O priority. I don't see any reason why cannot scheduled backup have a low or background priority.

  • Anonymous
    May 02, 2009
    Some questions concerning gaming performance: I was wondering if the Desktop (or parts of it) are shutdown when using DirectX in fullscreen mode.  How much would this improve gaming performance?  Does any part of the OS get moved to the page file or something when DirectX is in fullscreen mode?

  • Anonymous
    May 04, 2009
    My Aero performance with a Nvidia Geforce 8200M on a laptop was slower then Vista, but my gaming performance was faster. I was very disappointed to see my Aero performance slower so point score is slower then Vista. Sorry Microsoft there is Aero performance loss going on here that needs to be addressed!

  • Anonymous
    May 14, 2009
    Wonderful that the XPDM troubles from the beta are fixed in RC1. There is one thing left though. When my intel 82830 based Tablet PC resumes from hibernate (suspend to disk) it opens with 800×600 resolution but with the original 1024x786 oddly mapped on top of it. Vertically it is fully mapped, but horizontally stuff disappears in thin air at the right outside of the screen. When I logon this problem remains. But if I then drop back to the Welcome screen the resolution returns to a sane state. This makes me believe the problem can be solved with an extra display 'reset' after resume. A simple fix for a widely used chipset in older laptops. Would it be possible to include such a fix? Should I send driver information to somebody at microsoft? btw, writing this on my tablet worked pretty well :D

  • Anonymous
    May 18, 2009
    I have 3*24" monitor and 2 nvidia GTX260 in SLI + 1 nvidia 8800GT, is the span mode of xp would be in the RTM version? I mean having a 'virtual' resolution of 5760x1200 instead of 3 time 1920x1200 ... Many game, application, will benefit from that, it's the only reason i will stay with xp. Thanx

  • Anonymous
    June 24, 2009
    Hello. i have ATI MOBILITY FIREGL 9000 on my IBM T40p. and on W7 i cannot run any game.. even couter strike or warcraft, and there is a problem in playing videos.. its horrible. when i tried to install drivers which are perfect on XP it gives me an error. even Fallout is not running. is there any chance to fix this problem??? if i need to send drivers to a developer, i will do it. please help me =( Thanks

  • Anonymous
    November 13, 2009
    Is there any way to improve processor performances without changing it?

  • Anonymous
    November 28, 2009
    The perform seems nice-to-user interface. TANHKS for  your guide.

  • Anonymous
    April 18, 2010
    You guys done the best job to improve Windows 7! Reduced memory consumption is number one reason of Windows 7 success. The only party-pooper is Intel with 945GM WDDM 1.0 chipset in millions of notebooks... One question not covered here: what about GDI acceleration which i heard was brought back in WDDM 1.1? Is that true or optional, or not related with 1.1 at all? Why it's even 1.1 with such major changes =)

  • Anonymous
    April 19, 2010
    Anyway, seems like Microsoft are finally making their user interface more multi-threaded. I remember how BeOS was very responsive, even in heavy cpu using scenarioes. It was because it was SMP programmed from the bottom. But windows XP is still instant responsive, so why all the extra work with Windows 7? Is it a  workaround to all the bloat?

  • Anonymous
    May 04, 2010
    The perform seems nice-to-user interface. TANHKS for  your guide.

  • Anonymous
    May 30, 2010
    I'm getting this parallelism.  My timing stats are still showing something is being serialized, has anyone actually confirmed their claims?  I'm trying to use multiple threads, from a single process?  Is there still a single lock per-process?  So much talk of 'applications' very little about threads.

  • Anonymous
    May 30, 2010
    I'm not getting this parallelism.  My timing stats are still showing something is being serialized, has anyone actually confirmed their claims?  I'm trying to use multiple threads, from a single process.  Is there still a single lock per-process?  So much talk of 'applications' very little about threads.

  • Anonymous
    March 18, 2011
    Hi like your blog. thought you and your viewers might find my site interesting which provides engineering questions in all subjects and specialization <a href="www.k2questions.com/Engineering-Degree-Important-Questions.aspx">engineering questions </a> http://www.k2questions.com

  • Anonymous
    August 07, 2011
    What an excellent blog it is about performance of windows 7 .  I also have found valuable information from the site below: www.techyv.com/.../performance-win-7

  • Anonymous
    April 11, 2013
    Hallo, i uploaded a video tutorial about how to increase performance for games/softwares in windows 7 in 1080p! watch and enjoy :) www.youtube.com/watch

  • Anonymous
    May 23, 2015
    It's interesting to note and to keep in mind that Atari 2600 (for example) displays graphics PERFECTLY synchronized to the video display at less than a 1MHz processor speed with almost no RAM, and yet these inefficient engineers pat each other in the back over a mediocre software system like windows built on top of poor hardware.  Let's not forget the aim of these systems: business, not excellence.  To these folks "graphics" means many pretty colors and small pixels, not correctness.  Would it have been hard, for example, to provide a frame-scheduling or sync mechanism to GDI operations without the need for some "new" technology (programs)?  A simple function would have done it if they'd been capable enough.  Windows games can't compare to DOS games, and those simply can't compare to C64, Atari and the first arcade games.  Says a lot doesn't it.