Software Archive
Read-only legacy content
17060 Discussions

Direct3D 9 MaxVolumeExtent and GMA X3100 GM965

adamh008
Beginner
411 Views
The DirectX SDK docs say:

MaxVolumeExtent
Maximum value for any of the three dimensions (width, height, and depth) of a volume texture.

Does this mean that width, height, depth <= MaxVolumeExtent?

Or, does it mean at least one out of width, height, depth <= MaxVolumeExtent?

The reason I ask is because this site:

http://software.intel.com/en-us/articles/intel-gma-3000-and-x3000-developers-guide

says the GM965 has Max 3d texture 8092 x 8092 x 256, but at the bottom, the same page shows MaxVolumeExtent = 256 from the device caps viewer.

I need to support volume textures: 512x256x256
0 Kudos
1 Reply
Chris_M_Intel
Employee
411 Views

Adam,

The width, height, and depth must all be less than or equal to the MaxVolumeExtent. That would mean that the largest volume texture on 965 is 256x256x256.

The texture sampler internally can support up to 8092x8092x256, but realistically we're limited by the 256 part as I understand it.

Chris

0 Kudos
Reply