Sponsored By

Bonus Feature: 'Optimizing Asset Processing'

In an <a href="http://www.gamasutra.com/view/feature/1866/optimizing_asset_processing.php">in-depth technical feature</a> posted on Gamasutra today, Neversoft co-founder Mick West discusses performance concerns when optimizing asset processing for games,

October 30, 2008

2 Min Read
Game Developer logo in a gray background | Game Developer

Author: by Staff

In an in-depth technical feature posted on Gamasutra today, Neversoft co-founder Mick West discusses performance concerns when optimizing asset processing for games, including the basic nature of the common problems and in-depth solutions for keeping the pipeline efficient. Referring to asset processing tools as "the ugly stepsister" of game development, West warns against ignoring their role. He notes that, because of their simplicity, effort is often not spent to properly optimize them, which can end up eating away time later in the project. Multithreading is a great way to make these tools more efficient, West notes. "Most PCs now have some kind of multicore and/or hyper-threading," he writes. "If your tools are written in the traditional mindset of a single processing thread, you’re wasting a significant amount of the silicon you paid for, as well as the time of the artists and level designers as they wait for their assets to be converted. "Since the nature of asset data is generally to be large chunks of homogeneous data, such as lists of vertices and polygons, it’s generally very amenable to data level parallelization with worker threads, where the same code is run on multiple chunks of similar data concurrently, taking advantage of the cache." Surprisingly, he even admits that "bad code" is permissible when it comes to processing tools, as long as the risks are properly weighed: "In-house tools don’t always need to be up to the same code standards as the code you use in your commercially released games. Sometime you can get performance benefits by making certain dangerous assumptions about the data you’re processing and the hardware it will be running on. "Instead of constantly allocating buffers as needed, try allocating a 'reasonable' chunk of memory as a general purpose buffer. If you have debugging code, make sure you can switch it off. Logging or other instrumenting functions can end up taking more time than the code they are logging. If earlier stages in the pipeline are robust enough, then (very carefully) consider removing error and bounds checking from later stages if you can see they are a significant factor. "If you have a bunch of separate programs, consider bunching them together into one uber-tool to cut the load times. All these are bad practices, but for their limited lifetime, the risks may be outweighed by the rewards." You can now read the full Gamasutra feature on the subject, posted as an independently authored piece within the Intel Visual Computing section, and which includes sample code (no registration required; please feel free to link to this feature from external websites).

Daily news, dev blogs, and stories from Game Developer straight to your inbox

You May Also Like