Developing Games on Intel Graphics
If you are gaming on graphics integrated in your Intel Processor, this is the place for you! Find answers to your questions or post your issues with PC games
489 Discussions

Performance Tip: Consider Z only pass followed by color pass.

Chuck_De_Sylva
Beginner
587 Views

When using long complex pixel shaders its important to minimize the number of pixels rendered so that total shader compute time stays within reason.

One way of doing this is to do an initial Z only pass (meaning no color buffer writes or pixel shader execution) for all objects in the scene. Then do a second pass with shading turned on. The early Z test will then eliminate work on all non visible pixels. This approach should not be used with simple single texture shaders since the cost of two passes can easily exceed the relatively low cost of rendering with a simple shader.

0 Kudos
1 Reply
Intel_Software_Netw1
587 Views

For moreabout this, see the full Intel GMA 3000 and X3000 Developer's Guide.

==

Lexi S.

IntelSoftware NetworkSupport

http://www.intel.com/software

Contact us

0 Kudos
Reply