Linearized Depth using Vertex Shaders | 04/27/2006 | In this article we'll look at an easy way to implement linear depth values using a Z-buffer, by implementing transformation in a programmable vertex shader. |
Texture Based Clipping Demo | 04/27/2006 | Shows an alternate technique for clipping of geometry to arbitrary planes. This provides a high performance alternative to Direct3D user-defined clipping planes, and allows arbitrary clipping planes while using hardware T&L on devices that do not support clip planes. |
Understanding the Dot Product | 07/30/2005 | Provides an introduction to the dot product function, which determines the relationship of two vectors, and explores various uses of this function |
Using W-Buffers | 07/01/2005 | Provides a look at the the mathematical and practical differences between Z and W based depth buffering. Includes code to detect W-Buffering hardware and implement W based depth buffers. |
Introduction to Effect Files | 08/01/2004 | The first in a series of articles targetted at DirectX Effect Files, provides an introduction to the use of Effect Files with the D3DX framework. Effects allow the developer to define rendering techniques outside of application code. Benefits include greater flexibility for your rendering engine, support of various hardware capabilities, and a rapid integration of new objects and visual effects into an application without the need for changes to compiled code. |
Rendering Full Screen Images from Textures | 07/10/2004 | Shows how to use textures to render full screen bitmaps, such as splash screens or backgrounds, using D3D primitives. Sample code includes detection of maximum texture size, and subdivision of images too large for hardware to load in a single texture. |
Saving a Screen Shot in DirectX Graphics | 07/10/2004 | Simple function to perform screen grabs in DX 8.1, with source code. |
A Simple Blit Function for DirectX 8 | 07/10/2004 | Shows how to use pre-transformed polygons to simulate a Blit function in Direct3D. |
Scaling and Centering of ID3DXMesh Geometry | 04/11/2003 | Source code for functions that allow a mesh to be rescaled to fit within specific bounds and/or centered at origin |
Scaling and Centering of ID3DXMesh Geometry in DX9 | 04/11/2003 | Source code for functions that allow a mesh to be rescaled to fit within specific bounds and/or centered at origin |
DirectX 8 Graphics FAQ | 01/28/2003 | X-Zone's FAQ on issues specific to DirectX 9 Graphics |
Batching of Polygons with a Vertex Cache | 09/27/2002 | Illustrates the use of a vertex cache to improve performance by batching together smaller groups of triangles. |
Shader Transforms with Non-Transposed Matrices | 06/19/2002 | Shows how to use row-major matrices for transformation in a programmable vertex shader, avoiding having to transpose matrices used as inputs to a vertex shader. |
Synthesizing Patches using Vertex Shaders | 05/21/2002 | Vertex Shader Terrain Demo and Article |
Introduction to Catmull-Rom Splines | 05/21/2002 | Explains Catmull-Rom splines and their potential uses. Includes demo source and executable illustrating the use of Catmull-Rom splines for smooth animation along a path. |
View Oriented Billboards | 05/21/2002 | Billboarding techniques are utilized in 3D applications to orient a polygon to always face the user. This allows the application of a 2D image, such as a lens flare or images of foliage, into a 3D scene. By applying an image in this way, the illusion of complex objects or effects can be applied with a minimum of overhead. |
Creating Subsets in ID3DXMesh | 04/16/2002 | Explains how to render subsets within an ID3DXMesh object, including setup of attribute buffers and mesh optimization. |
Stencil Based Screen Wipes | 03/13/2002 | Provides sample application with source code, illustrating the application of an alpha mask to the stencil buffer, and the use of this technique to create complex screen wipes between scenes. |
Rendering 3D Scenes to Large Image Formats | 03/05/2002 | In this article we will take a look at a technique for rendering very large images in Direct3D, independant of available video memory. Inlcudes sample source code. |
Color Keying in DirectX 8 Graphics | 01/20/2002 | Demonstrates how to simulate color keying in DirectX 8 Graphics using alpha blending and the D3DX texture creation functions. |
Using the ID3DXMesh Class | 01/20/2002 | Discusses the basics you need to know to use the ID3DXMesh class, including mesh storage, using attributes to draw subsets, mesh optimization, and more. |
Projecting a Ray from 2D Screen Coordinates | 01/20/2002 | Direct3D provides the means to project your 3D world onto the screen, but often 3D titles require the ability to convert screen coordinates into 3D, and to determine the objects that are visible at a location in the viewport. This article lies the initial groundwork required for establishing a ray pick routine, by providing algorithms and working code to convert a pixel coordinate into a ray in world space. |
Improved Ray Picking | 01/20/2002 | Sample application with source code to demonstrate object selection. This sample improves upon the DirectX SDK's Pick sample by handling separate object transformations, and also demonstrates transformation of objects in a hierarchial tree. |
FVF Definitions for DX7 Vertex Types in DX8 | 11/25/2001 | Provides Flexible Vertex Format (FVF) definitions for the standard DX7 vertex types. These are handy for those who are porting applications to DX8, and need definitions for their existing vertex formats. |
Using Bounding Spheres | 11/25/2001 | In this article, we will take a look at how bounding spheres are defined, and how they can be used for efficient course testing of collision. |
First Look at DX8 Graphics | 11/25/2001 | A look at some of the changes in the graphics APIs in DX8. This area is aimed at highlighting the changes that will have to be considered when making the move to DX 8 with your existing code. |
Spherical Texture Mapping | 11/15/2001 | This article demonstrates the mapping of spherical texture coordinates onto an object. Includes sample code for texture wrapping a ID3DXMesh Object. |
Simple DX8 Framework | 11/15/2001 | A good starting point for writing applications using DirectX 8 graphics. Provides full screen and windowed operation, and a high performance message loop. |
Rendering to Multiple Windows | 11/15/2001 | Provides information on source code necessary to develop applications that render multiple views in separate windows using DirectX Graphics. |